Exemple #1
0
 private async Task CreateMdrAlert(INotificationForDrugResistanceImport notification)
 {
     var mdrAlert = new MdrAlert {
         NotificationId = notification.NotificationId
     };
     await _alertService.AddUniqueAlertAsync(mdrAlert);
 }
 private async Task CreateMdrAlert(Notification notification)
 {
     var mdrAlert = new MdrAlert {
         NotificationId = notification.NotificationId
     };
     await _alertService.AddUniqueAlertAsync(mdrAlert);
 }