public Task <bool> GetPoFundingStatusQueryAsync(ulong poNumber, BlockParameter blockParameter = null)
        {
            var getPoFundingStatusFunction = new GetPoFundingStatusFunction();

            getPoFundingStatusFunction.PoNumber = poNumber;

            return(ContractHandler.QueryAsync <GetPoFundingStatusFunction, bool>(getPoFundingStatusFunction, blockParameter));
        }
 public Task <bool> GetPoFundingStatusQueryAsync(GetPoFundingStatusFunction getPoFundingStatusFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetPoFundingStatusFunction, bool>(getPoFundingStatusFunction, blockParameter));
 }