Example #1
0
        public Task <GetPoByEshopIdAndQuoteOutputDTO> GetPoByEshopIdAndQuoteQueryAsync(string eShopIdString, BigInteger quoteId, BlockParameter blockParameter = null)
        {
            var getPoByEshopIdAndQuoteFunction = new GetPoByEshopIdAndQuoteFunction();

            getPoByEshopIdAndQuoteFunction.EShopIdString = eShopIdString;
            getPoByEshopIdAndQuoteFunction.QuoteId       = quoteId;

            return(ContractHandler.QueryDeserializingToObjectAsync <GetPoByEshopIdAndQuoteFunction, GetPoByEshopIdAndQuoteOutputDTO>(getPoByEshopIdAndQuoteFunction, blockParameter));
        }
Example #2
0
 public Task <GetPoByEshopIdAndQuoteOutputDTO> GetPoByEshopIdAndQuoteQueryAsync(GetPoByEshopIdAndQuoteFunction getPoByEshopIdAndQuoteFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetPoByEshopIdAndQuoteFunction, GetPoByEshopIdAndQuoteOutputDTO>(getPoByEshopIdAndQuoteFunction, blockParameter));
 }