public string GetDepartmentNameByPersonNo(string personNo)
 {
     try
     {
         if (string.IsNullOrEmpty(personNo))
         {
             return("");
         }
         return(departmentDal.GetDepartmentNameByPersonNo(personNo));
     }
     catch
     {
         return("");
     }
 }