public GenerateReOpenedWorkitemsReportHandler(
     IIndex <string, IDataSource> dataSources,
     IWorkItemClassificationContext workItemClassificationContext,
     IRepository repository,
     ILogger <GenerateReOpenedWorkitemsReportHandler> logger)
     : base(dataSources, repository, logger)
 {
     _workItemClassificationContext = workItemClassificationContext;
 }
示例#2
0
 public WeeklyStatusReporter(IRepository repository,
                             IWorkItemClassificationContext classificationContext,
                             IOptions <VSTSConfiguration> configuration,
                             IProgressReporter progressReporter,
                             ILogger <WeeklyStatusReporter> logger) : base(repository, configuration, logger)
 {
     _classificationContext = classificationContext;
     _progressReporter      = progressReporter;
 }
 public AggregatedWorkitemsETAReporter(IRepository repository,
                                       IWorkItemClassificationContext classificationContext,
                                       IOptions <VSTSConfiguration> configuration,
                                       IProgressReporter progressReporter,
                                       ILogger <AggregatedWorkitemsETAReporter> logger)
     : base(repository, configuration, logger)
 {
     _classificationContext = classificationContext;
     _progressReporter      = progressReporter;
 }