public SqlConnectionManager(string getDatabaseCommand, ISqlCommandWrapperFactory commandFactory = null)
 {
     _getDatabaseCommand    = getDatabaseCommand;
     _databaseNames         = new List <string>();
     _scnBuilder            = new SqlConnectionStringBuilder();
     _commandWrapperFactory = commandFactory ?? new SqlCommandWrapperFactory();
 }
 public SqlConnectionManager(string getDatabaseCommand, ISqlCommandWrapperFactory commandFactory = null)
 {
     _getDatabaseCommand = getDatabaseCommand;
     _databaseNames = new List<string>();
     _scnBuilder = new SqlConnectionStringBuilder();
     _commandWrapperFactory = commandFactory ?? new SqlCommandWrapperFactory();
 }