Esempio n. 1
0
 private async Task CreateMBovisAlert(INotificationForDrugResistanceImport notification)
 {
     var mBovisAlert = new MBovisAlert {
         NotificationId = notification.NotificationId
     };
     await _alertService.AddUniqueAlertAsync(mBovisAlert);
 }
 private async Task CreateMBovisAlert(Notification notification)
 {
     var mBovisAlert = new MBovisAlert {
         NotificationId = notification.NotificationId
     };
     await _alertService.AddUniqueAlertAsync(mBovisAlert);
 }