コード例 #1
0
        public Task <string> TransferOutFundsForPoToSellerRequestAsync(ulong poNumber)
        {
            var transferOutFundsForPoToSellerFunction = new TransferOutFundsForPoToSellerFunction();

            transferOutFundsForPoToSellerFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAsync(transferOutFundsForPoToSellerFunction));
        }
コード例 #2
0
        public Task <TransactionReceipt> TransferOutFundsForPoToSellerRequestAndWaitForReceiptAsync(ulong poNumber, CancellationTokenSource cancellationToken = null)
        {
            var transferOutFundsForPoToSellerFunction = new TransferOutFundsForPoToSellerFunction();

            transferOutFundsForPoToSellerFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferOutFundsForPoToSellerFunction, cancellationToken));
        }
コード例 #3
0
 public Task <TransactionReceipt> TransferOutFundsForPoToSellerRequestAndWaitForReceiptAsync(TransferOutFundsForPoToSellerFunction transferOutFundsForPoToSellerFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferOutFundsForPoToSellerFunction, cancellationToken));
 }
コード例 #4
0
 public Task <string> TransferOutFundsForPoToSellerRequestAsync(TransferOutFundsForPoToSellerFunction transferOutFundsForPoToSellerFunction)
 {
     return(ContractHandler.SendRequestAsync(transferOutFundsForPoToSellerFunction));
 }