public ActionResult Snimi(ProizvodUrediVM p) { if (!ModelState.IsValid) { return(View("Uredi", p)); } Proizvod entity; if (p == null || p.Id == 0) { entity = new Proizvod(); ctx.Proizvods.Add(entity); } else { entity = ctx.Proizvods.Find(p.Id); } entity.Id = p.Id; entity.Valid = p.Valid; entity.Naziv = p.Naziv; entity.Cijena = p.Cijena; ctx.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Dodaj() { ProizvodUrediVM Model = new ProizvodUrediVM(); Model.Valid = true; return(View("Uredi", Model)); }
public ActionResult Uredi(int proizvodId) { Proizvod entity = ctx.Proizvods.Find(proizvodId); ProizvodUrediVM Model = new ProizvodUrediVM(); Model.Id = entity.Id; Model.Valid = entity.Valid; Model.Naziv = entity.Naziv; Model.Cijena = entity.Cijena; Model.Popust = entity.Popust; return(View("Uredi", Model)); }