public ActionResult DeleteConfirmed(int id) { NazwaKlasy nazwaKlasy = db.NazwaKlasies.Find(id); db.NazwaKlasies.Remove(nazwaKlasy); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "Id,Imie,Nazwisko")] NazwaKlasy nazwaKlasy) { if (ModelState.IsValid) { db.Entry(nazwaKlasy).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(nazwaKlasy)); }
public ActionResult Create([Bind(Include = "Id,Imie,Nazwisko")] NazwaKlasy nazwaKlasy) { if (ModelState.IsValid) { db.NazwaKlasies.Add(nazwaKlasy); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(nazwaKlasy)); }
// GET: NazwaKlasies/Edit/5 public ActionResult Edit(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } NazwaKlasy nazwaKlasy = db.NazwaKlasies.Find(id); if (nazwaKlasy == null) { return(HttpNotFound()); } return(View(nazwaKlasy)); }