public Task <byte> GetOrderStatusQueryAsync(uint orderId, BlockParameter blockParameter = null)
        {
            var getOrderStatusFunction = new GetOrderStatusFunction();

            getOrderStatusFunction.OrderId = orderId;

            return(ContractHandler.QueryAsync <GetOrderStatusFunction, byte>(getOrderStatusFunction, blockParameter));
        }
 public Task <byte> GetOrderStatusQueryAsync(GetOrderStatusFunction getOrderStatusFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetOrderStatusFunction, byte>(getOrderStatusFunction, blockParameter));
 }