Example #1
0
 public EmailService(IEmailBodyFormatter emailBodyFormatter, IWebDataScrapingService webDataScrappingService, IEmailRepository emailRepository, IEmailSender emailSender)
 {
     _emailBodyFormatter     = emailBodyFormatter;
     _webDataScrapingService = webDataScrappingService;
     _emailRepository        = emailRepository;
     _emailSender            = emailSender;
 }
Example #2
0
 public WebDataController(IWebDataScrapingService service, IWorldDataService worldDataService)
 {
     _service          = service;
     _worldDataService = worldDataService;
 }