コード例 #1
0
 private async Task CreateMBovisAlert(INotificationForDrugResistanceImport notification)
 {
     var mBovisAlert = new MBovisAlert {
         NotificationId = notification.NotificationId
     };
     await _alertService.AddUniqueAlertAsync(mBovisAlert);
 }
コード例 #2
0
 private async Task CreateMBovisAlert(Notification notification)
 {
     var mBovisAlert = new MBovisAlert {
         NotificationId = notification.NotificationId
     };
     await _alertService.AddUniqueAlertAsync(mBovisAlert);
 }