public SettingsController(
     ITfsSettingsService settingsService,
     IReportHistoryService reportHistoryService)
 {
     this.settingsService      = settingsService;
     this.reportHistoryService = reportHistoryService;
 }
Beispiel #2
0
 public HomeController(
     ITfsSettingsService settingsService,
     ITfsProjectService projectService,
     ITfsQueryService tfsQueryService,
     IExcelWriterService excelWriterService,
     IBroadcastService broadcastService,
     IReportHistoryService reportHistoryService,
     IChartService chartService)
 {
     this.settingsService      = settingsService;
     this.projectService       = projectService;
     this.tfsQueryService      = tfsQueryService;
     this.excelWriterService   = excelWriterService;
     this.broadcastService     = broadcastService;
     this.reportHistoryService = reportHistoryService;
     this.chartService         = chartService;
 }