public SchoolController(IHistoricalChartBuilder historicalChartBuilder, IFinancialDataService financialDataService, IFinancialCalculationsService fcService, IContextDataService contextDataService, IDownloadCSVBuilder csvBuilder)
 {
     _historicalChartBuilder = historicalChartBuilder;
     _financialDataService   = financialDataService;
     _fcService          = fcService;
     _contextDataService = contextDataService;
     _csvBuilder         = csvBuilder;
 }
 public TrustController(IHistoricalChartBuilder historicalChartBuilder, IFinancialDataService financialDataService, IFinancialCalculationsService fcService, ITrustSearchService trustSearchService, IDownloadCSVBuilder csvBuilder)
 {
     _historicalChartBuilder = historicalChartBuilder;
     _financialDataService   = financialDataService;
     _fcService          = fcService;
     _trustSearchService = trustSearchService;
     _csvBuilder         = csvBuilder;
 }
Exemplo n.º 3
0
 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 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;
 }
Exemplo n.º 6
0
 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;
 }