public MedicalExportableReportHelper(IMediaRepository mediaRepository, IBaseReportService baseReportService, ILogManager logManager, ITestResultService testResultService, ITestNotPerformedService testNotPerformedService, IEventCustomerReportingService eventCustomersReportingService, IEventArchiveStatsService eventArchiveStatsService, ITestPerformedCsvExportHelper testPerformedCsvExportHelper, IEventCustomerQuestionAnswerService eventCustomerQuestionAnswerServcie) : base(mediaRepository, baseReportService, logManager) { _testResultService = testResultService; _testNotPerformedService = testNotPerformedService; _eventCustomersReportingService = eventCustomersReportingService; _eventArchiveStatsService = eventArchiveStatsService; _baseReportService = baseReportService; _testPerformedCsvExportHelper = testPerformedCsvExportHelper; _eventCustomerQuestionAnswerServcie = eventCustomerQuestionAnswerServcie; }
public ReportsController(ISettings settings, ITestResultService testResultService, IPhysicianEvaluationService physicianEvaluationService, IKynCustomerReportService kynCustomerReportService, ITestNotPerformedService testNotPerformedService, IEventCustomerReportingService eventCustomerReportingService, ISessionContext sessionContext, IEventArchiveStatsService eventArchiveStatsService, IEventCustomerQuestionAnswerService eventCustomerQuestionAnswerServcie) { _pageSize = settings.DefaultPageSizeForReports; _testResultService = testResultService; _physicianEvaluationService = physicianEvaluationService; _kynCustomerReportService = kynCustomerReportService; _testNotPerformedService = testNotPerformedService; _eventCustomerReportingService = eventCustomerReportingService; _sessionContext = sessionContext; _eventArchiveStatsService = eventArchiveStatsService; _eventCustomerQuestionAnswerServcie = eventCustomerQuestionAnswerServcie; }