public ActionResult DeleteConfirmed(int id) { EGZEMPLARZ eGZEMPLARZ = db.EGZEMPLARZ.Find(id); db.EGZEMPLARZ.Remove(eGZEMPLARZ); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "ID_Egzemplarza,Ilosc,ID_Produktu,ID_Magazynu")] EGZEMPLARZ eGZEMPLARZ) { if (ModelState.IsValid) { db.Entry(eGZEMPLARZ).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } ViewBag.ID_Magazynu = new SelectList(db.MAGAZYN, "ID_Magazynu", "Opis", eGZEMPLARZ.ID_Magazynu); ViewBag.ID_Produktu = new SelectList(db.PRODUKT, "ID_Produktu", "Nazwa", eGZEMPLARZ.ID_Produktu); return(View(eGZEMPLARZ)); }
// GET: EGZEMPLARZs/Details/5 public ActionResult Details(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } EGZEMPLARZ eGZEMPLARZ = db.EGZEMPLARZ.Find(id); if (eGZEMPLARZ == null) { return(HttpNotFound()); } return(View(eGZEMPLARZ)); }
// GET: EGZEMPLARZs/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } EGZEMPLARZ eGZEMPLARZ = db.EGZEMPLARZ.Find(id); if (eGZEMPLARZ == null) { return(HttpNotFound()); } ViewBag.ID_Magazynu = new SelectList(db.MAGAZYN, "ID_Magazynu", "Opis", eGZEMPLARZ.ID_Magazynu); ViewBag.ID_Produktu = new SelectList(db.PRODUKT, "ID_Produktu", "Nazwa", eGZEMPLARZ.ID_Produktu); return(View(eGZEMPLARZ)); }