コード例 #1
0
        public Task <bool> GetPoFundingStatusQueryAsync(ulong poNumber, BlockParameter blockParameter = null)
        {
            var getPoFundingStatusFunction = new GetPoFundingStatusFunction();

            getPoFundingStatusFunction.PoNumber = poNumber;

            return(ContractHandler.QueryAsync <GetPoFundingStatusFunction, bool>(getPoFundingStatusFunction, blockParameter));
        }
コード例 #2
0
 public Task <bool> GetPoFundingStatusQueryAsync(GetPoFundingStatusFunction getPoFundingStatusFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetPoFundingStatusFunction, bool>(getPoFundingStatusFunction, blockParameter));
 }