public Task <TransactionReceipt> UpsertTestCentreOwnerRequestAndWaitForReceiptAsync(byte[] testCentreId, string testCentreOwner, bool isOwner, CancellationTokenSource cancellationToken = null)
        {
            var upsertTestCentreOwnerFunction = new UpsertTestCentreOwnerFunction();

            upsertTestCentreOwnerFunction.TestCentreId    = testCentreId;
            upsertTestCentreOwnerFunction.TestCentreOwner = testCentreOwner;
            upsertTestCentreOwnerFunction.IsOwner         = isOwner;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(upsertTestCentreOwnerFunction, cancellationToken));
        }
        public Task <string> UpsertTestCentreOwnerRequestAsync(byte[] testCentreId, string testCentreOwner, bool isOwner)
        {
            var upsertTestCentreOwnerFunction = new UpsertTestCentreOwnerFunction();

            upsertTestCentreOwnerFunction.TestCentreId    = testCentreId;
            upsertTestCentreOwnerFunction.TestCentreOwner = testCentreOwner;
            upsertTestCentreOwnerFunction.IsOwner         = isOwner;

            return(ContractHandler.SendRequestAsync(upsertTestCentreOwnerFunction));
        }
 public Task <TransactionReceipt> UpsertTestCentreOwnerRequestAndWaitForReceiptAsync(UpsertTestCentreOwnerFunction upsertTestCentreOwnerFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(upsertTestCentreOwnerFunction, cancellationToken));
 }
 public Task <string> UpsertTestCentreOwnerRequestAsync(UpsertTestCentreOwnerFunction upsertTestCentreOwnerFunction)
 {
     return(ContractHandler.SendRequestAsync(upsertTestCentreOwnerFunction));
 }