Beispiel #1
0
 public SpiderCheckPeriodicalHandler
 (
     ISpiderCheckManagerService spiderCheckManagerService,
     SpiderCheckSettings settings,
     ILogFactory logFactory
 ) : base(settings.PeriodicalHandlerTimerDelay, logFactory)
 {
     _spiderCheckManagerService = spiderCheckManagerService;
 }
Beispiel #2
0
 public SpiderManageController
 (
     ISpiderCheckManagerService checkManagerService,
     ISpiderFirstCheckService firstCheckService
 )
 {
     _checkManagerService = checkManagerService;
     _firstCheckService   = firstCheckService;
 }