Beispiel #1
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;
 }
 public EstablishmentStatusController(IActiveEstablishmentsService activeEstabService)
 {
     _activeEstabService = activeEstabService;
 }