Beispiel #1
0
        public ServiceResult <bool> VerifyWithdrawIMCombine(WithdrawCombineVerifyModel model)
        {
            var result = new ServiceResult <bool>();

            new MerchantWalletComponent().VerifyWithdrawCombine(this.GetMerchantAccountId(), model.SMSCode, model.GoogleCode, model.DivisionCode);
            result.Data = true;
            return(result);
        }
Beispiel #2
0
        public ServiceResult <bool> VerifyWithdrawIMCombine(WithdrawCombineVerifyModel model)
        {
            ServiceResult <bool> result = new ServiceResult <bool>();

            var accountId = this.GetUser().Id;

            new UserWithdrawComponent().VerifyWithdrawCombine(accountId, model.SMSCode, model.GoogleCode, model.DivisionCode);
            result.Data = true;
            return(result);
        }