public Task <TestCentresOutputDTO> TestCentresQueryAsync(byte[] returnValue1, BlockParameter blockParameter = null)
        {
            var testCentresFunction = new TestCentresFunction();

            testCentresFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryDeserializingToObjectAsync <TestCentresFunction, TestCentresOutputDTO>(testCentresFunction, blockParameter));
        }
 public Task <TestCentresOutputDTO> TestCentresQueryAsync(TestCentresFunction testCentresFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <TestCentresFunction, TestCentresOutputDTO>(testCentresFunction, blockParameter));
 }