public Task <TransactionReceipt> UpsertTestCentreCertSignersRequestAndWaitForReceiptAsync(List <TestCentreCertSigner> testCentreCertSignersToUpsert, CancellationTokenSource cancellationToken = null)
        {
            var upsertTestCentreCertSignersFunction = new UpsertTestCentreCertSignersFunction();

            upsertTestCentreCertSignersFunction.TestCentreCertSignersToUpsert = testCentreCertSignersToUpsert;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(upsertTestCentreCertSignersFunction, cancellationToken));
        }
        public Task <string> UpsertTestCentreCertSignersRequestAsync(List <TestCentreCertSigner> testCentreCertSignersToUpsert)
        {
            var upsertTestCentreCertSignersFunction = new UpsertTestCentreCertSignersFunction();

            upsertTestCentreCertSignersFunction.TestCentreCertSignersToUpsert = testCentreCertSignersToUpsert;

            return(ContractHandler.SendRequestAsync(upsertTestCentreCertSignersFunction));
        }
 public Task <TransactionReceipt> UpsertTestCentreCertSignersRequestAndWaitForReceiptAsync(UpsertTestCentreCertSignersFunction upsertTestCentreCertSignersFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(upsertTestCentreCertSignersFunction, cancellationToken));
 }
 public Task <string> UpsertTestCentreCertSignersRequestAsync(UpsertTestCentreCertSignersFunction upsertTestCentreCertSignersFunction)
 {
     return(ContractHandler.SendRequestAsync(upsertTestCentreCertSignersFunction));
 }