Exemplo n.º 1
0
 public HtmlWatcherBackgroundService(ILogger <HtmlWatcherBackgroundService> logger, HtmlProcessingService htmlProcessingService, IOptions <HtmlWatcherOptions> options)
 {
     _logger = logger;
     _htmlProcessingService = htmlProcessingService;
     _filepath = options.Value.HtmlWatcherPath;
 }
 public HtmlPollingBackgroundService(ILogger <HtmlPollingBackgroundService> logger, HtmlProcessingService htmlProcessingService)
 {
     _logger = logger;
     _htmlProcessingService = htmlProcessingService;
 }