41 lines
985 B
C#
41 lines
985 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 DetailsModel : PageModel
|
|
{
|
|
private readonly FakturyWeb.Data.FakturyWebContext _context;
|
|
|
|
public DetailsModel(FakturyWeb.Data.FakturyWebContext context)
|
|
{
|
|
_context = context;
|
|
}
|
|
|
|
public ZAKAZNIK ZAKAZNIK { get; set; }
|
|
|
|
public async Task<IActionResult> OnGetAsync(int? id)
|
|
{
|
|
if (id == null)
|
|
{
|
|
return NotFound();
|
|
}
|
|
|
|
ZAKAZNIK = await _context.ZAKAZNIK.FirstOrDefaultAsync(m => m.ID == id);
|
|
|
|
if (ZAKAZNIK == null)
|
|
{
|
|
return NotFound();
|
|
}
|
|
return Page();
|
|
}
|
|
}
|
|
}
|