public ActionResult Create(DepartamentoSalud departamentosalud)
        {
            if (ModelState.IsValid)
            {
                db.DepartamentoSaluds.Add(departamentosalud);
                db.SaveChanges();
                return RedirectToAction("Index");
            }

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