Пример #1
0
 /// <summary>
 /// 获取部门信息 超级管理员获取所有
 /// </summary>
 /// <param name="userNo"></param>
 /// <returns></returns>
 public DataTable GetDeptInfo(string userNo)
 {
     try
     {
         return(handler.GetDeptInfo(userNo));
     }
     catch (TuhuBizException)
     {
         throw;
     }
     catch (Exception innerEx)
     {
         var exception = new LogisticException(BizErrorCode.SystemError, "获取部门信息出错", innerEx);
         logger.Log(Level.Error, exception, "Error occurred in Get information of deparment.");
         throw exception;
     }
 }