public Task <GetHouseOutputDTO> GetHouseQueryAsync(BigInteger idHouse, BlockParameter blockParameter = null)
        {
            var getHouseFunction = new GetHouseFunction();

            getHouseFunction.IdHouse = idHouse;

            return(ContractHandler.QueryDeserializingToObjectAsync <GetHouseFunction, GetHouseOutputDTO>(getHouseFunction, blockParameter));
        }
 public Task <GetHouseOutputDTO> GetHouseQueryAsync(GetHouseFunction getHouseFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryDeserializingToObjectAsync <GetHouseFunction, GetHouseOutputDTO>(getHouseFunction, blockParameter));
 }