using ContosoPizza.Models; using ContosoPizza.Services; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; namespace ContosoPizza.Pages { public class PizzaListModel : PageModel { private readonly PizzaService _service; public IList PizzaList { get; set; } = default; public PizzaListModel(PizzaService service) { _service = service; } public void OnGet() { PizzaList = _service.GetPizzas(); } } }