Example #1
0
        public ActionResult AddItemToDatabase(string name, string description)
        {
            PrzemiotViewModel item = new PrzemiotViewModel
            {
                   Id_Uzytkownik= Convert.ToInt16(Session["UserID"]),
                    Nazwa=name,
                     Opis=description

            };
            ItemService sr = new ItemService();
            int id= sr.AddItemToDatabase(item);

            return Json(id, JsonRequestBehavior.AllowGet);
        }
Example #2
0
        public int AddItemToDatabase(PrzemiotViewModel item)
        {
            var context = new hEntities();
            Przedmiot it = new Przedmiot
                {
                     Nazwa=item.Nazwa,
                     Opis=item.Opis,
                     Id_Uzytkownik = item.Id_Uzytkownik,
                     Czy_Kupiony=false,

                };

            context.Przedmiot.Add(it);

            context.SaveChanges();

            return it.Id;
        }