Beispiel #1
0
 public MessageProxy(IRunFeedbackPresenter presenter, IInformationFeedbackPresenter infoPresenter, IConfiguration configuration, ISendNotifications notifier)
 {
     _configuration      = configuration;
     _notifier           = notifier;
     _presenter          = presenter;
     _presenter.View     = this;
     _infoPresenter      = infoPresenter;
     _infoPresenter.View = this;
 }
 public InformationForm(IInformationFeedbackPresenter presenter)
 {
     _syncContext    = AsyncOperationManager.SynchronizationContext;
     _presenter      = presenter;
     _presenter.View = this;
     InitializeComponent();
     readFormSpacing();
     InformationForm_Resize(this, new EventArgs());
 }
        public InformationForm(IInformationFeedbackPresenter presenter)
        {
            _syncContext = AsyncOperationManager.SynchronizationContext;
            _presenter = presenter;
            _presenter.View = this;
            InitializeComponent();
            readFormSpacing();
			InformationForm_Resize(this, new EventArgs());
        }
 public ConsoleApplication(IInformationFeedbackPresenter informationFeedback, IRunFeedbackPresenter runFeedbackPresenter, IDirectoryWatcher watcher, IConfiguration configuration)
 {
     _watcher = watcher;
     _informationFeedback = informationFeedback;
     _informationFeedback.View = this;
     _runFeedback = runFeedbackPresenter;
     _runFeedback.View = this;
     configuration.ValidateSettings();
 }
 public ConsoleApplication(IInformationFeedbackPresenter informationFeedback, IRunFeedbackPresenter runFeedbackPresenter, IDirectoryWatcher watcher, IConfiguration configuration, ILogger logger, ISendNotifications notifier)
 {
     _logger                   = logger;
     _notifier                 = notifier;
     _watcher                  = watcher;
     _configuration            = configuration;
     _informationFeedback      = informationFeedback;
     _informationFeedback.View = this;
     _runFeedback              = runFeedbackPresenter;
     _runFeedback.View         = this;
 }
        public ConsoleApplication(IInformationFeedbackPresenter informationFeedback, IRunFeedbackPresenter runFeedbackPresenter, IDirectoryWatcher watcher, IConfiguration configuration, ILogger logger, ISendNotifications notifier)
        {
			_logger = logger;
			_notifier = notifier;
            _watcher = watcher;
			_configuration = configuration;
            _informationFeedback = informationFeedback;
            _informationFeedback.View = this;
            _runFeedback = runFeedbackPresenter;
            _runFeedback.View = this;
        }
Beispiel #7
0
 public InformationWindow(IInformationFeedbackPresenter presenter)
 {
     InitializeComponent();
     _presenter      = presenter;
     _presenter.View = this;
 }
 public AutoTestMessageProxy(IRunFeedbackPresenter presenter, IInformationFeedbackPresenter infoPresenter, IConfiguration configuration, ISendNotifications notifier)
     : base(presenter, infoPresenter, configuration, notifier)
 {
 }
 public InformationWindow(IInformationFeedbackPresenter presenter)
 {
     InitializeComponent();
     _presenter = presenter;
     _presenter.View = this;
 }