Esempio n. 1
0
 public AreaController(IAreasRepository areasRepository, IIndicatorsRepository indicatorsRepository, IYearsRepository yearsRepository, IStatisticsService statisticsService)
 {
     this.areasRepository      = areasRepository;
     this.indicatorsRepository = indicatorsRepository;
     this.yearsRepository      = yearsRepository;
     this.statisticsService    = statisticsService;
 }
Esempio n. 2
0
 public StatisticsController(IStatisticsService statisticsService, IIndicatorsRepository indicatorsRepository, IYearsRepository yearsRepository)
 {
     this.statisticsService    = statisticsService;
     this.indicatorsRepository = indicatorsRepository;
     this.yearsRepository      = yearsRepository;
 }