public ConnectToSqlServerPresenter(IConnectToSqlServerView view, IDatabaseConnectionsHelper databaseConnectionsHelper)
		{
			View = view;
			_databaseConnectionsHelper = databaseConnectionsHelper;

			RegisterEvents();

			View.LoadConnections(_databaseConnectionsHelper.GetNames(ErrorLogSources.SqlServer.ToString()));
		}
        public ConnectToDatabaseFilePresenter(IConnectToDatabaseFileView view, IFileSystemHelper fileSystemHelper, IDatabaseConnectionsHelper databaseConnectionsHelper)
        {
            View = view;
            _fileSystemHelper = fileSystemHelper;
            _databaseConnectionsHelper = databaseConnectionsHelper;

            RegisterEvents();

            View.LoadConnections(_databaseConnectionsHelper.GetNames(ErrorLogSources.SqlServerCompact.ToString()));
        }
 public ConnectToSqlServerCompactPresenter(IConnectToSqlServerCompactView view, IFileSystemHelper fileSystemHelper, IDatabaseConnectionsHelper databaseConnectionsHelper)
     : base(view, fileSystemHelper, databaseConnectionsHelper)
 {
 }