public static async Task UpdateAccountAsync(Models.Account account) { TableOperation updateOperation = TableOperation.InsertOrReplace(account); await AccountTable.ExecuteAsync(updateOperation); }
public static async Task InsertAccountAsync(Models.Account account) { TableOperation insertOperation = TableOperation.Insert(account); await AccountTable.ExecuteAsync(insertOperation); }