Код: Выделить всё
using System;
using System.Collections;
using System.Linq;
using System.Dynamic;
using Microsoft.AspNetCore.Mvc.Razor;
using SafetyApp.Services;
namespace SafetyApp.Pages
{
public class IndexModel : PageModel
{
private readonly SafetyService _safety;
public IndexModel(SafetyService safety)
{
_safety = safety;
}
public void OnGet()
{
var inspectionType = _safety.GetInspectionType();
}
}
}
Подробнее здесь: https://stackoverflow.com/questions/784 ... azor-pages