Exemplo n.º 1
0
 public InstagramEventHandler(
     IWebDriver webDriver,
     ScraperAccountDao accountRepository,
     InstagramProfileDao profileDao,
     ScraperSettings scraperSettings,
     IScraperValidator scraperValidator,
     ILogger logger,
     NotificationSender notificationSender)
 {
     _webDriver          = webDriver;
     _accountDao         = accountRepository;
     _profileDao         = profileDao;
     _scraperSettings    = scraperSettings;
     _scraperValidator   = scraperValidator;
     _logger             = logger;
     _notificationSender = notificationSender;
 }
 public InstagramProfile(InstagramProfileDao profileDao, ScraperSettings scraperSettings, IScraperValidator scraperValidator)
 {
     _profileDao       = profileDao;
     _scraperSettings  = scraperSettings;
     _scraperValidator = scraperValidator;
 }