Ejemplo n.º 1
0
        public Task <GetPoByQuoteOutputDTO> GetPoByQuoteQueryAsync(BigInteger quoteId, BlockParameter blockParameter = null)
        {
            var getPoByQuoteFunction = new GetPoByQuoteFunction();

            getPoByQuoteFunction.QuoteId = quoteId;

            return(ContractHandler.QueryDeserializingToObjectAsync <GetPoByQuoteFunction, GetPoByQuoteOutputDTO>(getPoByQuoteFunction, blockParameter));
        }
Ejemplo n.º 2
0
 public Task <GetPoByQuoteOutputDTO> GetPoByQuoteQueryAsync(GetPoByQuoteFunction getPoByQuoteFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetPoByQuoteFunction, GetPoByQuoteOutputDTO>(getPoByQuoteFunction, blockParameter));
 }