public ActionResult Create(departamento departamento) { if (ModelState.IsValid) { db.departamento.Add(departamento); db.SaveChanges(); return RedirectToAction("Index"); } return View(departamento); }
public ActionResult Edit(departamento departamento) { if (ModelState.IsValid) { db.Entry(departamento).State = EntityState.Modified; db.SaveChanges(); return RedirectToAction("Index"); } return View(departamento); }