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 GetDatesHandler(INotificationAssessmentDatesSummaryRepository datesSummaryRepository, IMap <NotificationDatesSummary, NotificationDatesData> mapper) { this.datesSummaryRepository = datesSummaryRepository; this.mapper = mapper; }