using Microsoft.WindowsAzure.Storage; using Microsoft.WindowsAzure.Storage.Table; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.Web.Storage { public class TableStorageManager { private CloudTableClient _client; public TableStorageManager() { CloudStorageAccount storageAccount = CloudStorageAccount.Parse(WebConfig.STORAGE_ACCOUNT); _client = storageAccount.CreateCloudTableClient(); } public CloudTable GetTable(String name) { return _client.GetTableReference(name); } } }