public ActionResult DeleteConfirmed(int id) { Setore setore = db.Setores.Find(id); db.Setores.Remove(setore); db.SaveChanges(); return(RedirectToAction("Index")); }
// // GET: /Setor/Delete/5 public ActionResult Delete(int id = 0) { Setore setore = db.Setores.Find(id); if (setore == null) { return(HttpNotFound()); } return(View(setore)); }
public ActionResult Edit(Setore setore) { if (ModelState.IsValid) { db.Entry(setore).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(setore)); }
public ActionResult Create(Setore setore) { if (ModelState.IsValid) { db.Setores.Add(setore); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(setore)); }