Exemplo n.º 1
0
 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;
 }
Exemplo n.º 3
0
 public ConfirmationCommunity(ICommunityService communityService,
                              IOptions <SendGridConnections> sendGridSettings,
                              IOptions <AdminConfiguration> adminSettings)
 {
     this.communityService = communityService;
     this.sendGridSettings = sendGridSettings.Value;
     this.adminSettings    = adminSettings.Value;
 }
Exemplo n.º 4
0
 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;
 }