public Task <string> CreateHouseRequestAsync(BigInteger id, BigInteger price, string addressHome, BigInteger squareMeter, string description, BigInteger hashDocuments)
        {
            var createHouseFunction = new CreateHouseFunction();

            createHouseFunction.Id            = id;
            createHouseFunction.Price         = price;
            createHouseFunction.AddressHome   = addressHome;
            createHouseFunction.SquareMeter   = squareMeter;
            createHouseFunction.Description   = description;
            createHouseFunction.HashDocuments = hashDocuments;

            return(ContractHandler.SendRequestAsync(createHouseFunction));
        }
        public Task <TransactionReceipt> CreateHouseRequestAndWaitForReceiptAsync(BigInteger id, BigInteger price, string addressHome, BigInteger squareMeter, string description, BigInteger hashDocuments, CancellationTokenSource cancellationToken = null)
        {
            var createHouseFunction = new CreateHouseFunction();

            createHouseFunction.Id            = id;
            createHouseFunction.Price         = price;
            createHouseFunction.AddressHome   = addressHome;
            createHouseFunction.SquareMeter   = squareMeter;
            createHouseFunction.Description   = description;
            createHouseFunction.HashDocuments = hashDocuments;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(createHouseFunction, cancellationToken));
        }
 public Task <TransactionReceipt> CreateHouseRequestAndWaitForReceiptAsync(CreateHouseFunction createHouseFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(createHouseFunction, cancellationToken));
 }
 public Task <string> CreateHouseRequestAsync(CreateHouseFunction createHouseFunction)
 {
     return(ContractHandler.SendRequestAsync(createHouseFunction));
 }