public ConfirmationArticle(IArticleService articleService, IOptions <SendGridConnections> sendGridSettings, IOptions <AdminConfiguration> adminSettings) { this.articleService = articleService; this.sendGridSettings = sendGridSettings.Value; this.adminSettings = adminSettings.Value; }
public ConfirmationPerson(IPersonService personService, IOptions <SendGridConnections> sendGridSettings, IOptions <AdminConfiguration> adminSettings) { this.personService = personService; this.sendGridSettings = sendGridSettings.Value; this.adminSettings = adminSettings.Value; }
public ConfirmationCommunity(ICommunityService communityService, IOptions <SendGridConnections> sendGridSettings, IOptions <AdminConfiguration> adminSettings) { this.communityService = communityService; this.sendGridSettings = sendGridSettings.Value; this.adminSettings = adminSettings.Value; }
public ReportEvents(IEventService eventService, IOptions <SendGridConnections> sendGridSettings, IOptions <AdminConfiguration> adminSettings, IFlatFileService flatFileService, IFileService fileService) { this.eventService = eventService; this.flatFileService = flatFileService; this.fileService = fileService; this.sendGridSettings = sendGridSettings.Value; this.adminSettings = adminSettings.Value; }