FakturyWeb/Pages/Zakaznik/Index.cshtml.cs

30 lines
725 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.RazorPages;
using Microsoft.EntityFrameworkCore;
using FakturyWeb.Data;
using RazorPagesMovie.Models;
namespace FakturyWeb.Pages.Zakaznik
{
public class IndexModel : PageModel
{
private readonly FakturyWeb.Data.FakturyWebContext _context;
public IndexModel(FakturyWeb.Data.FakturyWebContext context)
{
_context = context;
}
public IList<ZAKAZNIK> ZAKAZNIK { get;set; }
public async Task OnGetAsync()
{
ZAKAZNIK = await _context.ZAKAZNIK.ToListAsync();
}
}
}