public Task <TransactionReceipt> TransferInFundsForPoFromBuyerRequestAndWaitForReceiptAsync(ulong poNumber, CancellationTokenSource cancellationToken = null)
        {
            var transferInFundsForPoFromBuyerFunction = new TransferInFundsForPoFromBuyerFunction();

            transferInFundsForPoFromBuyerFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferInFundsForPoFromBuyerFunction, cancellationToken));
        }
        public Task <string> TransferInFundsForPoFromBuyerRequestAsync(ulong poNumber)
        {
            var transferInFundsForPoFromBuyerFunction = new TransferInFundsForPoFromBuyerFunction();

            transferInFundsForPoFromBuyerFunction.PoNumber = poNumber;

            return(ContractHandler.SendRequestAsync(transferInFundsForPoFromBuyerFunction));
        }
 public Task <TransactionReceipt> TransferInFundsForPoFromBuyerRequestAndWaitForReceiptAsync(TransferInFundsForPoFromBuyerFunction transferInFundsForPoFromBuyerFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(transferInFundsForPoFromBuyerFunction, cancellationToken));
 }
 public Task <string> TransferInFundsForPoFromBuyerRequestAsync(TransferInFundsForPoFromBuyerFunction transferInFundsForPoFromBuyerFunction)
 {
     return(ContractHandler.SendRequestAsync(transferInFundsForPoFromBuyerFunction));
 }