Пример #1
0
 public FakeStorageTableClient(MemoryTableStore store, StorageCredentials credentials)
 {
     _store       = store;
     _credentials = credentials;
 }
Пример #2
0
 public FakeStorageTable(MemoryTableStore store, string tableName)
 {
     _store     = store;
     _tableName = tableName;
     _sdkObject = new CloudTable(new Uri("http://localhost:10000/fakeaccount/" + tableName));
 }