public JsonResult GetEmployeeInfo()
        {
            List <Employee> listEmp = empBll.GetEmployeeInfo();

            return(Json(new { data = listEmp }, JsonRequestBehavior.AllowGet));
        }