public ActionResult EmployeeRequest()
        {
            EmployeeBlLayer.EmployeeLogic empLogic = new EmployeeBlLayer.EmployeeLogic();
            var empList = empLogic.GetEmployeeStatus();

            if (empList.Count() > 0)
            {
                return(View(empList));
            }
            else
            {
                TempData["status"] = "false";
                return(View());
            }
        }