public AlertGroupValueService(IAlertGroupValueRepository alertGroupValueRepository,
                               IAlertGroupRepository alertGroupRepository, IAlertValueService alertValueService)
 {
     _alertGroupValueRepository = alertGroupValueRepository;
     _alertGroupRepository      = alertGroupRepository;
     _alertValueService         = alertValueService;
 }
Ejemplo n.º 2
0
 public AlertController(IAlertService alertService, IPresenter <AlertViewModel, Alert> alertPresenter,
                        IAlertValueService alertValueService, IPresenter <AlertValueViewModel, AlertValue> alertValuePresenter)
 {
     _alertService        = alertService;
     _alertPresenter      = alertPresenter;
     _alertValueService   = alertValueService;
     _alertValuePresenter = alertValuePresenter;
 }
Ejemplo n.º 3
0
 public LogController(
     INormalizedLogService normalizedLogService,
     IRawLogService rawLogService,
     IParsingRulesService parsingRulesService,
     IParseService parseService,
     IPresenter <NormalizedLogViewModel, NormalizedLog> normalizedLogPresenter,
     IPresenter <RawLogViewModel, RawLog> rawLogPresenter, IAlertValueService alertValueService, IComponentService componentService)
 {
     _normalizedLogService   = normalizedLogService;
     _rawLogService          = rawLogService;
     _parsingRulesService    = parsingRulesService;
     _parseService           = parseService;
     _normalizedLogPresenter = normalizedLogPresenter;
     _rawLogPresenter        = rawLogPresenter;
     _alertValueService      = alertValueService;
     _componentService       = componentService;
 }