public Task <TransactionReceipt> TransferOutFundsForPoToBuyerRequestAndWaitForReceiptAsync(ulong poNumber, CancellationTokenSource cancellationToken = null)
        {
            var transferOutFundsForPoToBuyerFunction = new TransferOutFundsForPoToBuyerFunction();

            transferOutFundsForPoToBuyerFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferOutFundsForPoToBuyerFunction, cancellationToken));
        }
        public Task <string> TransferOutFundsForPoToBuyerRequestAsync(ulong poNumber)
        {
            var transferOutFundsForPoToBuyerFunction = new TransferOutFundsForPoToBuyerFunction();

            transferOutFundsForPoToBuyerFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAsync(transferOutFundsForPoToBuyerFunction));
        }
 public Task <TransactionReceipt> TransferOutFundsForPoToBuyerRequestAndWaitForReceiptAsync(TransferOutFundsForPoToBuyerFunction transferOutFundsForPoToBuyerFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferOutFundsForPoToBuyerFunction, cancellationToken));
 }
 public Task <string> TransferOutFundsForPoToBuyerRequestAsync(TransferOutFundsForPoToBuyerFunction transferOutFundsForPoToBuyerFunction)
 {
     return(ContractHandler.SendRequestAsync(transferOutFundsForPoToBuyerFunction));
 }