public ActionResult Delete(int[] employeeIDs = null)
 {
     if (employeeIDs != null)
     {
         CatalogBLL.DeleteEmployee(employeeIDs);
     }
     return(RedirectToAction("Index"));
 }