public Task <HousesOutputDTO> HousesQueryAsync(BigInteger returnValue1, BlockParameter blockParameter = null)
        {
            var housesFunction = new HousesFunction();

            housesFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryDeserializingToObjectAsync <HousesFunction, HousesOutputDTO>(housesFunction, blockParameter));
        }
 public Task <HousesOutputDTO> HousesQueryAsync(HousesFunction housesFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <HousesFunction, HousesOutputDTO>(housesFunction, blockParameter));
 }