public StartUpService(IServiceProvider serviceProvider, IScheduleService scheduleService, IWebSiteCrawlService webSiteCrawlService)
 {
     this.serviceProvider     = serviceProvider;
     this.scheduleService     = scheduleService;
     this.webSiteCrawlService = webSiteCrawlService;
 }
Exemplo n.º 2
0
 public WebSiteStatusesController(SiteMonitoringToolDbContext dbContext, IScheduleService scheduleService, IWebSiteCrawlService webSiteCrawlService)
 {
     this.dbContext           = dbContext;
     this.scheduleService     = scheduleService;
     this.webSiteCrawlService = webSiteCrawlService;
 }