public JsonResult GetDesignationByDeptId(int deptId)
        {
            //deptBLL = new DepartmentBLL();
            var listDesig = empBll.GetDesignationByDeptId(deptId);

            return(Json(listDesig, JsonRequestBehavior.AllowGet));
        }