internal InjectionAlerter(IAlerterFactory alerterFactory)
 {
     if (alerterFactory == null)
     {
         throw new ArgumentNullException(nameof(alerterFactory));
     }
     _alerterFactory = alerterFactory;
 }
Exemple #2
0
 internal InjectionAlerter(IAlerterFactory alerterFactory)
 {
     _alerterFactory = alerterFactory ?? throw new ArgumentNullException(nameof(alerterFactory));
 }