コード例 #1
0
 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;
 }
コード例 #2
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;
 }