public ActionResult Delete(int id, Employee employee)
 {
     try
     {
         bool status = empLogic.DeleteEmployee(id, employee);
         if (status)
         {
             TempData["deleteStatus"] = "true";
             return(RedirectToAction("Index"));
         }
         else
         {
             TempData["deleteStatus"] = "false";
             return(RedirectToAction("Index"));
         }
     }
     catch
     {
         TempData["deleteStatus"] = "false";
         return(RedirectToAction("Index", "Employee"));
     }
 }