public ExcelDocumentationBuilder(Configuration configuration, DirectoryTreeCrawler featureCrawler,
                                  ExcelFeatureFormatter excelFeatureFormatter,
                                  ExcelSheetNameGenerator excelSheetNameGenerator,
                                  ExcelTableOfContentsFormatter excelTableOfContentsFormatter)
 {
     this.configuration = configuration;
     this.featureCrawler = featureCrawler;
     this.excelFeatureFormatter = excelFeatureFormatter;
     this.excelSheetNameGenerator = excelSheetNameGenerator;
     this.excelTableOfContentsFormatter = excelTableOfContentsFormatter;
 }
Beispiel #2
0
 public ExcelDocumentationBuilder(
     IConfiguration configuration,
     ExcelFeatureFormatter excelFeatureFormatter,
     ExcelSheetNameGenerator excelSheetNameGenerator,
     ExcelTableOfContentsFormatter excelTableOfContentsFormatter,
     IFileSystem fileSystem)
 {
     this.configuration                 = configuration;
     this.excelFeatureFormatter         = excelFeatureFormatter;
     this.excelSheetNameGenerator       = excelSheetNameGenerator;
     this.excelTableOfContentsFormatter = excelTableOfContentsFormatter;
     this.fileSystem = fileSystem;
 }
 public ExcelDocumentationBuilder(
     IConfiguration configuration,
     ExcelFeatureFormatter excelFeatureFormatter,
     ExcelSheetNameGenerator excelSheetNameGenerator,
     ExcelTableOfContentsFormatter excelTableOfContentsFormatter,
     IFileSystem fileSystem)
 {
     this.configuration = configuration;
     this.excelFeatureFormatter = excelFeatureFormatter;
     this.excelSheetNameGenerator = excelSheetNameGenerator;
     this.excelTableOfContentsFormatter = excelTableOfContentsFormatter;
     this.fileSystem = fileSystem;
 }