public ActionResult Delete(Department department)
 {
     try
     {
         _iFDepartment.Delete(department);
         return(Json(""));
     }
     catch (Exception ex)
     {
         return(Json(ex));
     }
 }
 public JsonResult Delete(int id)
 {
     _iFDepartment.Delete(id);
     return(Json(string.Empty));
 }