コード例 #1
0
 public SendGridNotificationBatch(
     MailNotificationsConfiguration configuration,
     IEnumerable <INotification> notifications)
 {
     _configuration = configuration;
     _notifications.AddRange(notifications);
 }
コード例 #2
0
 public SendGridNotificationService(IOptions <MailNotificationsConfiguration> configuration)
 {
     _configuration = configuration.Value;
 }