public async Task <IActionResult> Edit(int id, [Bind("Id,Naziv")] VrstaRobe vrstaRobe) { if (id != vrstaRobe.Id) { return(NotFound()); } if (ModelState.IsValid) { try { _context.Update(vrstaRobe); await _context.SaveChangesAsync(); } catch (DbUpdateConcurrencyException) { if (!VrstaRobeExists(vrstaRobe.Id)) { return(NotFound()); } else { throw; } } return(RedirectToAction(nameof(Index))); } return(View(vrstaRobe)); }
public Roba(VrstaRobe vrsta, double cijena, string naziv, string opis) { this.vrsta = vrsta; this.cijena = cijena; this.naziv = naziv; this.opis = opis; }
public async Task <IActionResult> Create([Bind("Id,Naziv")] VrstaRobe vrstaRobe) { if (ModelState.IsValid) { _context.Add(vrstaRobe); await _context.SaveChangesAsync(); return(RedirectToAction(nameof(Index))); } return(View(vrstaRobe)); }