public Task <OrdersOutputDTO> OrdersQueryAsync(uint returnValue1, BlockParameter blockParameter = null)
        {
            var ordersFunction = new OrdersFunction();

            ordersFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryDeserializingToObjectAsync <OrdersFunction, OrdersOutputDTO>(ordersFunction, blockParameter));
        }
 public Task <OrdersOutputDTO> OrdersQueryAsync(OrdersFunction ordersFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <OrdersFunction, OrdersOutputDTO>(ordersFunction, blockParameter));
 }