public GetKeyDatesSummaryInformationHandler(INotificationApplicationRepository notificationRepository,
                                             INotificationAssessmentRepository assessmentRepository,
                                             INotificationAssessmentDatesSummaryRepository datesSummaryRepository,
                                             INotificationAssessmentDecisionRepository decisionRepository,
                                             IFacilityRepository facilityRepository,
                                             IConsultationRepository consultationRepository,
                                             IMapper mapper)
 {
     this.notificationRepository = notificationRepository;
     this.assessmentRepository   = assessmentRepository;
     this.datesSummaryRepository = datesSummaryRepository;
     this.decisionRepository     = decisionRepository;
     this.facilityRepository     = facilityRepository;
     this.mapper = mapper;
     this.consultationRepository = consultationRepository;
 }
 public GetDecisionHistoryHandler(INotificationAssessmentDecisionRepository decisionRepository)
 {
     this.decisionRepository = decisionRepository;
 }