Example #1
0
        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"));
        }
Example #2
0
        public ActionResult Dodaj()
        {
            ProizvodUrediVM Model = new ProizvodUrediVM();

            Model.Valid = true;

            return(View("Uredi", Model));
        }
Example #3
0
        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));
        }