Example #1
0
        public Task <GetOrderInfoOutputDTO> GetOrderInfoQueryAsync(string orderid, BlockParameter blockParameter = null)
        {
            var getOrderInfoFunction = new GetOrderInfoFunction();

            getOrderInfoFunction.Orderid = orderid;

            return(ContractHandler.QueryDeserializingToObjectAsync <GetOrderInfoFunction, GetOrderInfoOutputDTO>(getOrderInfoFunction, blockParameter));
        }
Example #2
0
 public Task <GetOrderInfoOutputDTO> GetOrderInfoQueryAsync(GetOrderInfoFunction getOrderInfoFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetOrderInfoFunction, GetOrderInfoOutputDTO>(getOrderInfoFunction, blockParameter));
 }