Exemple #1
0
 public AlarmInfoJob(IDeviceDataDao deviceDataDao, IAlarmInfoDao alarmInfoDao, IThresholdDao thresholdDao, ISeverityDao severityDao, ILogger <AlarmInfoJob> logger)
 {
     this._deviceDataDao = deviceDataDao;
     this._alarmInfoDao  = alarmInfoDao;
     this._thresholdDao  = thresholdDao;
     this._severityDao   = severityDao;
     this._logger        = logger;
 }
 public AlarmInfoJob(IDeviceDataDao deviceDataDao,
                     IAlarmInfoDao alarmInfoDao,
                     IThresholdDao thresholdDao,
                     ISeverityDao severityDao,
                     IDeviceDao deviceDao,
                     IDeviceBus deviceBus,
                     IStateTypeDao stateTypeDao,
                     IFieldBus fieldBus,
                     IFieldDao fieldDao,
                     ILogger <AlarmInfoJob> logger)
 {
     this._deviceDataDao = deviceDataDao;
     this._alarmInfoDao  = alarmInfoDao;
     this._thresholdDao  = thresholdDao;
     this._severityDao   = severityDao;
     this._deviceDao     = deviceDao;
     this._deviceBus     = deviceBus;
     this._stateTypeDao  = stateTypeDao;
     this._fieldBus      = fieldBus;
     this._fieldDao      = fieldDao;
     this._logger        = logger;
 }
 public SeverityBus(ISeverityDao severityDao, ILogger <SeverityBus> logger)
 {
     this._severityDao = severityDao;
     this._logger      = logger;
 }