Beispiel #1
0
 /// <inheritdoc />
 public AlertRepository(IAlertApi alertApi, IMapper mapper)
 {
     _alertApi = alertApi ?? throw new ArgumentNullException(nameof(alertApi));
     _mapper   = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }
 public AlertNotificationService(IAlertApi alertApi, IMapper mapper)
 {
     _alertApi = alertApi ?? throw new ArgumentNullException(nameof(alertApi));
     _mapper   = mapper ?? throw new ArgumentNullException(nameof(mapper));
 }