コード例 #1
0
 public DrugResistanceProfileService(
     INotificationService notificationService,
     INotificationRepository notificationRepository,
     IDrugResistanceProfileRepository drugResistanceProfileRepository,
     IEnhancedSurveillanceAlertsService enhancedSurveillanceAlertsService)
 {
     _notificationService               = notificationService;
     _notificationRepository            = notificationRepository;
     _drugResistanceProfileRepository   = drugResistanceProfileRepository;
     _enhancedSurveillanceAlertsService = enhancedSurveillanceAlertsService;
 }
コード例 #2
0
        public ClinicalDetailsModel(
            INotificationService service,
            IAuthorizationService authorizationService,
            INotificationRepository notificationRepository,
            IAlertRepository alertRepository,
            IReferenceDataRepository referenceDataRepository,
            IEnhancedSurveillanceAlertsService enhancedSurveillanceAlertsService)
            : base(service, authorizationService, notificationRepository, alertRepository)
        {
            _referenceDataRepository           = referenceDataRepository;
            _enhancedSurveillanceAlertsService = enhancedSurveillanceAlertsService;

            CurrentPage = NotificationSubPaths.EditClinicalDetails;
        }
コード例 #3
0
 public MBovisExposureToKnownCasesModel(
     INotificationService notificationService,
     IAuthorizationService authorizationService,
     INotificationRepository notificationRepository,
     IEnhancedSurveillanceAlertsService enhancedSurveillanceAlertsService,
     IAlertRepository alertRepository,
     IUserHelper userHelper)
     : base(
         notificationService,
         authorizationService,
         notificationRepository,
         alertRepository,
         userHelper)
 {
     CurrentPage = NotificationSubPaths.EditMBovisExposureToKnownCases;
     _enhancedSurveillanceAlertsService = enhancedSurveillanceAlertsService;
 }
 public MBovisUnpasteurisedMilkConsumptionsModel(
     INotificationService notificationService,
     IAuthorizationService authorizationService,
     INotificationRepository notificationRepository,
     IEnhancedSurveillanceAlertsService enhancedSurveillanceAlertsService,
     IAlertRepository alertRepository,
     IUserHelper userHelper)
     : base(
         notificationService,
         authorizationService,
         notificationRepository,
         alertRepository,
         userHelper)
 {
     CurrentPage = NotificationSubPaths.EditMBovisUnpasteurisedMilkConsumptions;
     _enhancedSurveillanceAlertsService = enhancedSurveillanceAlertsService;
 }
コード例 #5
0
 public MDRDetailsModel(
     INotificationService service,
     IAuthorizationService authorizationService,
     INotificationRepository notificationRepository,
     IReferenceDataRepository referenceDataRepository,
     IEnhancedSurveillanceAlertsService enhancedSurveillanceAlertsService,
     IAlertRepository alertRepository,
     IUserHelper userHelper)
     : base(
         service,
         authorizationService,
         notificationRepository,
         alertRepository,
         userHelper)
 {
     CurrentPage = NotificationSubPaths.EditMDRDetails;
     _referenceDataRepository           = referenceDataRepository;
     _enhancedSurveillanceAlertsService = enhancedSurveillanceAlertsService;
 }