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