Exemple #1
0
 public dm_userEntity GetUserInfoByToken(string token)
 {
     try
     {
         return(dM_UserService.GetUserInfoByToken(token));
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         throw ExceptionEx.ThrowBusinessException(ex);
     }
 }