Пример #1
0
        public void Table(string tableName)
        {
            var action = new RemoveTable(_dataClient);

            action.SetTableNames(tableName);
            action.Execute();
        }
 public void Table(string tableName)
 {
     var action = new RemoveTable(_dataClient);
     action.SetTableNames(tableName);
     action.Execute();
 }