Esempio n. 1
0
 public SettingsController(
     ITfsSettingsService settingsService,
     IReportHistoryService reportHistoryService)
 {
     this.settingsService      = settingsService;
     this.reportHistoryService = reportHistoryService;
 }
Esempio n. 2
0
 public TfsQueryService(
     ITfsSettingsService tfsSettingsService,
     IBroadcastService broadCastService)
 {
     this.tfsSettingsService = tfsSettingsService;
     this.broadcastService   = broadCastService;
 }
Esempio n. 3
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;
 }
Esempio n. 4
0
 public TfsProjectService(ITfsSettingsService tfsSettingsService)
 {
     this.tfsSettingsService = tfsSettingsService;
 }