public Task <string> TransferOutFundsForPoToSellerRequestAsync(ulong poNumber)
        {
            var transferOutFundsForPoToSellerFunction = new TransferOutFundsForPoToSellerFunction();

            transferOutFundsForPoToSellerFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAsync(transferOutFundsForPoToSellerFunction));
        }
        public Task <TransactionReceipt> TransferOutFundsForPoToSellerRequestAndWaitForReceiptAsync(ulong poNumber, CancellationTokenSource cancellationToken = null)
        {
            var transferOutFundsForPoToSellerFunction = new TransferOutFundsForPoToSellerFunction();

            transferOutFundsForPoToSellerFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferOutFundsForPoToSellerFunction, cancellationToken));
        }
 public Task <TransactionReceipt> TransferOutFundsForPoToSellerRequestAndWaitForReceiptAsync(TransferOutFundsForPoToSellerFunction transferOutFundsForPoToSellerFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferOutFundsForPoToSellerFunction, cancellationToken));
 }
 public Task <string> TransferOutFundsForPoToSellerRequestAsync(TransferOutFundsForPoToSellerFunction transferOutFundsForPoToSellerFunction)
 {
     return(ContractHandler.SendRequestAsync(transferOutFundsForPoToSellerFunction));
 }