Пример #1
0
 public IEnumerable <dm_userEntity> GetPageList(Pagination pagination, string queryJson)
 {
     try
     {
         return(dM_UserService.GetPageList(pagination, queryJson));
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         throw ExceptionEx.ThrowBusinessException(ex);
     }
 }