public DisableIndexesActor(SqlConnection sqlConnection)
 {
     _indexManager = new IndexManager(sqlConnection);
 }
 public EnableIndexesActor(SqlConnection sqlConnection)
 {
     _indexManager = new IndexManager(sqlConnection);
 }
 public CreateTableCopyActor(SqlConnection sqlConnection)
 {
     _database     = sqlConnection.GetDatabase();
     _indexManager = new IndexManager(sqlConnection);
 }