示例#1
0
 public Table(IAzure azure, string tableName, IfTableDoesNotExist doesNotExistAction)
 {
     _tableName = tableName;
     _autoCreate = doesNotExistAction == IfTableDoesNotExist.CreateIt;
     _azure = azure;
     _tableService = new TableService(_azure);
 }
示例#2
0
 public Table(string tableName, IfTableDoesNotExist doesNotExistAction, AzureHelper azureHelper)
 {
     _tableName = tableName;
     _azureHelper = azureHelper;
     _autoCreate = doesNotExistAction == IfTableDoesNotExist.CreateIt;
 }