Example #1
0
 private ValidationSchemaErrorsReport NewReport(
     IValidationSchemaErrorsReportBuilder validationSchemaErrorsReportBuilder = null,
     ICsvFileService csvService       = null,
     IFileNameService fileNameService = null,
     IFrontEndValidationReport frontEndValidationReport = null)
 {
     return(new ValidationSchemaErrorsReport(validationSchemaErrorsReportBuilder, csvService, fileNameService, frontEndValidationReport));
 }
Example #2
0
 public ValidationSchemaErrorsReport(
     IValidationSchemaErrorsReportBuilder validationSchemaErrorsReportBuilder,
     ICsvFileService csvService,
     IFileNameService fileNameService,
     IFrontEndValidationReport frontEndValidationReport)
     : base(ReportTaskNameConstants.ValidationSchemaErrorReport, "Rule Violation Report")
 {
     _validationSchemaErrorsReportBuilder = validationSchemaErrorsReportBuilder;
     _csvService               = csvService;
     _fileNameService          = fileNameService;
     _frontEndValidationReport = frontEndValidationReport;
 }