public Task <BigInteger> OwnerToHouseQueryAsync(string returnValue1, BlockParameter blockParameter = null)
        {
            var ownerToHouseFunction = new OwnerToHouseFunction();

            ownerToHouseFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <OwnerToHouseFunction, BigInteger>(ownerToHouseFunction, blockParameter));
        }
 public Task <BigInteger> OwnerToHouseQueryAsync(OwnerToHouseFunction ownerToHouseFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <OwnerToHouseFunction, BigInteger>(ownerToHouseFunction, blockParameter));
 }