public async Task <IActionResult> OnGetAsync(int?id) { if (id == null) { return(NotFound()); } Vozilo = repo.FindAll().FirstOrDefault(m => m.IDVozilo == id); if (Vozilo == null) { return(NotFound()); } return(Page()); }
public IActionResult OnGet(int?id) { if (id == null) { return(NotFound()); } Servis = servrepo.FindById((int)id); ServisStavke = servisStavka.FindAll().Select(x => new SelectListItem { Value = x.IDServisStavka.ToString(), Text = $"{x.Naziv}" }).ToList(); Vozila = voziloRepo.FindAll().Select(x => new SelectListItem { Value = x.IDVozilo.ToString(), Text = $"{x.Tip} {x.Marka}" }).ToList(); if (Servis == null) { return(NotFound()); } Vozilo = Servis.Vozilo.IDVozilo; ServisStavka = Servis.ServisStavka.IDServisStavka; return(Page()); }
public async Task <IActionResult> OnGetAsync(int?id) { if (id == null) { return(NotFound()); } PutniNalog = repo.FindAll().FirstOrDefault(m => m.IDPutniNalog == id); Vozaci = vozacRepo.FindAll().Select(x => new SelectListItem { Value = x.IDVozac.ToString(), Text = $"{x.Ime} {x.Prezime}" }).ToList(); Vozila = voziloRepo.FindAll().Select(x => new SelectListItem { Value = x.IDVozilo.ToString(), Text = $"{x.Tip} {x.Marka}" }).ToList(); Vozac = PutniNalog.Vozac.IDVozac; Vozilo = PutniNalog.Vozilo.IDVozilo; if (PutniNalog == null) { return(NotFound()); } return(Page()); }
public IActionResult OnGet() { ServisStavke = servisStavka.FindAll().Select(x => new SelectListItem { Value = x.IDServisStavka.ToString(), Text = $"{x.Naziv}" }).ToList(); Vozila = voziloRepo.FindAll().Select(x => new SelectListItem { Value = x.IDVozilo.ToString(), Text = $"{x.Tip} {x.Marka}" }).ToList(); return(Page()); }
public IActionResult OnGet() { Vozaci = vozacRepo.FindAll().Select(x => new SelectListItem { Value = x.IDVozac.ToString(), Text = $"{x.Ime} {x.Prezime}" }).ToList(); Vozila = voziloRepo.FindAll().Select(x => new SelectListItem { Value = x.IDVozilo.ToString(), Text = $"{x.Tip} {x.Marka}" }).ToList(); return(Page()); }
public void OnPost() { repo.InsertTestCase(); Vozilo = repo.FindAll().ToList(); }