Ejemplo n.º 1
0
        public async Task <JsonResult> Withdraw([FromBody] CreateWalletWithdrawalRequest request)
        {
            var result = await WalletServiceWrapper.CreateWithdrawalRequest(InjectAuthorization(request));

            return(new JsonResult(result));
        }
Ejemplo n.º 2
0
 public async Task <QueryResponse <WalletDepositResponse> > CreateWithdrawalRequest(CreateWalletWithdrawalRequest request)
 {
     return(await SendAsync <CreateWalletWithdrawalRequest, WalletDepositResponse>("WithdrawalWallet", request));
 }