Example #1
0
 /// <summary>
 /// 通过邀请码获取实体信息
 /// </summary>
 /// <param name="InviteCode"></param>
 /// <returns></returns>
 public dm_userEntity GetEntityByInviteCode(string InviteCode, ref dm_user_relationEntity dm_User_RelationEntity)
 {
     try
     {
         return(dM_UserService.GetEntityByInviteCode(InviteCode, ref dm_User_RelationEntity));
     }
     catch (Exception ex)
     {
         if (ex is ExceptionEx)
         {
             throw;
         }
         throw ExceptionEx.ThrowBusinessException(ex);
     }
 }