예제 #1
0
 public IEnumerable <dm_userEntity> GetList(string queryJson)
 {
     try
     {
         return(dM_UserService.GetList(queryJson));
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         throw ExceptionEx.ThrowBusinessException(ex);
     }
 }