Adds code
This commit is contained in:
commit
269bf50c78
33 changed files with 1489 additions and 0 deletions
25
Application/Pages/Index.cshtml.cs
Normal file
25
Application/Pages/Index.cshtml.cs
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
using Akka.Actor;
|
||||
using Microsoft.ApplicationInsights;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using Microsoft.AspNetCore.Mvc.RazorPages;
|
||||
|
||||
namespace PlanTempus.Pages
|
||||
{
|
||||
public class IndexModel : PageModel
|
||||
{
|
||||
private readonly TelemetryClient _telemetry;
|
||||
|
||||
public IndexModel(TelemetryClient telemetry, Akka.Actor.ActorSystem system)
|
||||
{
|
||||
_telemetry = telemetry;
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
public void OnGet()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue