public Task <TransactionReceipt> RefundPoToBuyerRequestAndWaitForReceiptAsync(ulong ethPoNumber, CancellationTokenSource cancellationToken = null)
        {
            var refundPoToBuyerFunction = new RefundPoToBuyerFunction();

            refundPoToBuyerFunction.EthPoNumber = ethPoNumber;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(refundPoToBuyerFunction, cancellationToken));
        }
        public Task <string> RefundPoToBuyerRequestAsync(ulong ethPoNumber)
        {
            var refundPoToBuyerFunction = new RefundPoToBuyerFunction();

            refundPoToBuyerFunction.EthPoNumber = ethPoNumber;

            return(ContractHandler.SendRequestAsync(refundPoToBuyerFunction));
        }
 public Task <TransactionReceipt> RefundPoToBuyerRequestAndWaitForReceiptAsync(RefundPoToBuyerFunction refundPoToBuyerFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(refundPoToBuyerFunction, cancellationToken));
 }
 public Task <string> RefundPoToBuyerRequestAsync(RefundPoToBuyerFunction refundPoToBuyerFunction)
 {
     return(ContractHandler.SendRequestAsync(refundPoToBuyerFunction));
 }