public ReportTasks(TextWriter writer, IReportOptionsFactory report_options_factory, IConcernReportFactory concern_report_factory, ITestReportFactory test_report_factory, IReportWriter report_writer)
 {
     this.writer = writer;
     this.report_options_factory = report_options_factory;
     this.concern_report_factory = concern_report_factory;
     this.test_report_factory = test_report_factory;
     this.report_writer = report_writer;
 }
 public TestReportController(ILogger <TestReportController> logger,
                             ITestReportService testReportService,
                             ITestReportFactory testReportFactory,
                             IMapper <TestReport, TestReportDto> testReportMapper)
 {
     _testReportMapper  = testReportMapper;
     _testReportFactory = testReportFactory;
     _testReportService = testReportService;
     _logger            = logger;
 }