public ActionResult Edit(Department department)
 {
     try
     {
         _deptRepository.Edit(department);
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }