Exemple #1
0
 public int?DecodeInviteCode(string InviteCode)
 {
     try
     {
         return(dM_UserService.DecodeInviteCode(InviteCode));
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         throw ExceptionEx.ThrowBusinessException(ex);
     }
 }