Esempio n. 1
0
 public SendGridNotificationBatch(
     MailNotificationsConfiguration configuration,
     IEnumerable <INotification> notifications)
 {
     _configuration = configuration;
     _notifications.AddRange(notifications);
 }
Esempio n. 2
0
 public SendGridNotificationService(IOptions <MailNotificationsConfiguration> configuration)
 {
     _configuration = configuration.Value;
 }