public EfficiencyMetricController(IContextDataService contextDataService, IEfficiencyMetricDataService efficiencyMetricDataService, ILogger <EfficiencyMetricController> logger) { _efficiencyMetricDataService = efficiencyMetricDataService; _logger = logger; }
public BenchmarkCriteriaController(ILocalAuthoritiesService laService, IFinancialDataService financialDataService, IContextDataService contextDataService, ILaSearchService laSearchService) { _financialDataService = financialDataService; _laService = laService; _contextDataService = contextDataService; _laSearchService = laSearchService; }
public SchoolController(IHistoricalChartBuilder historicalChartBuilder, IFinancialDataService financialDataService, IFinancialCalculationsService fcService, IContextDataService contextDataService, IDownloadCSVBuilder csvBuilder) { _historicalChartBuilder = historicalChartBuilder; _financialDataService = financialDataService; _fcService = fcService; _contextDataService = contextDataService; _csvBuilder = csvBuilder; }
public RedisCachedActiveUrnsService(IContextDataService contextDataService) { _contextDataService = contextDataService; //#if !DEBUG // ClearCachedData(); //#endif }
public SchoolVMWithHistoricalChartsBuilder(IHistoricalChartBuilder historicalChartBuilder, IFinancialDataService financialDataService, IFinancialCalculationsService fcService, IContextDataService contextDataService, ISchoolBenchmarkListService benchmarkBasketService, ILocalAuthoritiesService laSearchService) { _historicalChartBuilder = historicalChartBuilder; _financialDataService = financialDataService; _fcService = fcService; _contextDataService = contextDataService; _schoolBenchmarkListService = benchmarkBasketService; _laSearchService = laSearchService; }
public BenchmarkChartsController(IBenchmarkChartBuilder benchmarkChartBuilder, IFinancialDataService financialDataService, IFinancialCalculationsService fcService, ILocalAuthoritiesService laService, IDownloadCSVBuilder csvBuilder, IContextDataService contextDataService, IBenchmarkCriteriaBuilderService benchmarkCriteriaBuilderService, IComparisonService comparisonService) { _benchmarkChartBuilder = benchmarkChartBuilder; _financialDataService = financialDataService; _fcService = fcService; _laService = laService; _csvBuilder = csvBuilder; _contextDataService = contextDataService; _benchmarkCriteriaBuilderService = benchmarkCriteriaBuilderService; _comparisonService = comparisonService; }
public FederationController(IHistoricalChartBuilder historicalChartBuilder, IFinancialDataService financialDataService, IFinancialCalculationsService fcService, IContextDataService contextDataService, ILocalAuthoritiesService laService, IDownloadCSVBuilder csvBuilder, ISchoolBenchmarkListService benchmarkBasketService) { _historicalChartBuilder = historicalChartBuilder; _financialDataService = financialDataService; _contextDataService = contextDataService; _fcService = fcService; _laService = laService; _csvBuilder = csvBuilder; _benchmarkBasketService = benchmarkBasketService; }
public SelfAssessmentController( ISelfAssesmentDashboardDataService selfAssesmentDashboardDataService, IFinancialDataService financialDataService, IContextDataService contextDataService, ILogger <SelfAssessmentController> logger) { _selfAssesmentDashboardDataService = selfAssesmentDashboardDataService; _financialDataService = financialDataService; _contextDataService = contextDataService; _logger = logger; _exclusionPhaseList = new[] { "Nursery", "Pupil referral unit", "Special" }; }
public ManualComparisonController(ISchoolBenchmarkListService benchmarkBasketService, ILocalAuthoritiesService laService, IContextDataService contextDataService, IValidationService valService, ILocationSearchService locationSearchService, ISchoolSearchService schoolSearchService, IFilterBuilder filterBuilder, ILaSearchService laSearchService, IManualBenchmarkListService manualBenchmarkListService) : base(schoolSearchService, null, benchmarkBasketService, filterBuilder) { _laService = laService; _laSearchService = laSearchService; _contextDataService = contextDataService; _valService = valService; _locationSearchService = locationSearchService; _manualBenchmarkListService = manualBenchmarkListService; }
public TrustSearchController(ILocalAuthoritiesService laService, ILaSearchService laSearchService, ILocationSearchService locationSearchService, IFilterBuilder filterBuilder, IValidationService valService, IContextDataService contextDataService, ITrustSearchService trustSearchService, ISchoolSearchService schoolSearchService, ISchoolBenchmarkListService benchmarkBasketService) : base(schoolSearchService, trustSearchService, benchmarkBasketService, filterBuilder) { _laService = laService; _laSearchService = laSearchService; _locationSearchService = locationSearchService; _valService = valService; _contextDataService = contextDataService; }
public SchoolSearchController(ILocalAuthoritiesService laService, ILaSearchService laSearchService, IFilterBuilder filterBuilder, IValidationService valService, IContextDataService contextDataService, ISchoolSearchService schoolSearchService, ITrustSearchService trustSearchService) { _laService = laService; _laSearchService = laSearchService; _filterBuilder = filterBuilder; _valService = valService; _contextDataService = contextDataService; _schoolSearchService = schoolSearchService; _trustSearchService = trustSearchService; }
public TrustController(IHistoricalChartBuilder historicalChartBuilder, IFinancialDataService financialDataService, IFinancialCalculationsService fcService, IContextDataService contextDataService, IDownloadCSVBuilder csvBuilder, ISchoolBenchmarkListService benchmarkBasketService, ITrustHistoryService trustHistoryService, IGiasLookupService giasLookupService, ICscpLookupService cscpLookupService) { _historicalChartBuilder = historicalChartBuilder; _financialDataService = financialDataService; _contexDataService = contextDataService; _fcService = fcService; _csvBuilder = csvBuilder; _benchmarkBasketService = benchmarkBasketService; _trustHistoryService = trustHistoryService; _giasLookupService = giasLookupService; _cscpLookupService = cscpLookupService; }
public BenchmarkCriteriaController( ILocalAuthoritiesService laService, IFinancialDataService financialDataService, IContextDataService contextDataService, ILaSearchService laSearchService, ISchoolBenchmarkListService benchmarkBasketService, IComparisonService comparisonService, IValidationService valService) { _financialDataService = financialDataService; _laService = laService; _contextDataService = contextDataService; _laSearchService = laSearchService; _benchmarkBasketService = benchmarkBasketService; _comparisonService = comparisonService; _valService = valService; }
public SchoolController(IFinancialDataService financialDataService, IFinancialCalculationsService fcService, IContextDataService contextDataService, IDownloadCSVBuilder csvBuilder, ISchoolBenchmarkListService benchmarkBasketService, IActiveEstablishmentsService activeEstabService, ISchoolVMBuilder schoolVMBuilder, IGiasLookupService giasLookupService, ICscpLookupService cscpLookupService) { _financialDataService = financialDataService; _fcService = fcService; _contextDataService = contextDataService; _csvBuilder = csvBuilder; _benchmarkBasketService = benchmarkBasketService; _activeEstabService = activeEstabService; _schoolVMBuilder = schoolVMBuilder; _giasLookupService = giasLookupService; _cscpLookupService = cscpLookupService; }
public BenchmarkListController(IContextDataService contextDataService) { _contextDataService = contextDataService; }
public SchoolBenchmarkListService(IContextDataService contextDataService, IFinancialDataService financialDataService) { _contextDataService = contextDataService; _financialDataService = financialDataService; }
public BenchmarkListController(IContextDataService contextDataService, ISchoolBenchmarkListService benchmarkBasketService, IFinancialDataService financialDataService) { _contextDataService = contextDataService; _benchmarkBasketService = benchmarkBasketService; _financialDataService = financialDataService; }
public ManualBenchmarkListService(IContextDataService contextDataService) { _contextDataService = contextDataService; }