2025-01-03 16:21:03 +00:00
|
|
|
using Microsoft.ApplicationInsights;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc.RazorPages;
|
|
|
|
|
|
2025-02-20 00:23:13 +01:00
|
|
|
namespace PlanTempus.Application.Pages
|
2025-01-03 16:21:03 +00:00
|
|
|
{
|
|
|
|
|
public class IndexModel : PageModel
|
|
|
|
|
{
|
|
|
|
|
private readonly TelemetryClient _telemetry;
|
|
|
|
|
|
2025-01-14 23:10:30 +01:00
|
|
|
public IndexModel(TelemetryClient telemetry)
|
2025-01-03 16:21:03 +00:00
|
|
|
{
|
|
|
|
|
_telemetry = telemetry;
|
|
|
|
|
|
2025-02-20 00:23:13 +01:00
|
|
|
|
2025-01-03 16:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void OnGet()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|