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;
 }
 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 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;
 }