public async Task CreateOrUpdateConfiguration(AccountConfiguration configuration)
        {
            // Create the TableOperation that inserts the customer entity.
            TableOperation insertOperation = TableOperation.InsertOrReplace(configuration);

            // Execute the insert operation.
            await accountsTable.ExecuteAsync(insertOperation);
        }
 public async Task CreateOrUpdateConfiguration(AccountConfiguration account)
 {
     await this.client.UpsertDocumentAsync(accountUri, account);
 }