public HtmlDocumentFormatter(
     IConfiguration configuration,
     HtmlHeaderFormatter htmlHeaderFormatter,
     HtmlTableOfContentsFormatter htmlTableOfContentsFormatter,
     HtmlContentFormatter htmlContentFormatter,
     HtmlFooterFormatter htmlFooterFormatter,
     HtmlResourceSet htmlResources,
     IFileSystem fileSystem)
 {
     this.configuration = configuration;
     this.htmlHeaderFormatter = htmlHeaderFormatter;
     this.htmlTableOfContentsFormatter = htmlTableOfContentsFormatter;
     this.htmlContentFormatter = htmlContentFormatter;
     this.htmlFooterFormatter = htmlFooterFormatter;
     this.htmlResources = htmlResources;
     this.fileSystem = fileSystem;
 }
Example #2
0
 public HtmlDocumentFormatter(
     IConfiguration configuration,
     HtmlHeaderFormatter htmlHeaderFormatter,
     HtmlTableOfContentsFormatter htmlTableOfContentsFormatter,
     HtmlContentFormatter htmlContentFormatter,
     HtmlFooterFormatter htmlFooterFormatter,
     HtmlResourceSet htmlResources,
     IFileSystem fileSystem)
 {
     this.configuration                = configuration;
     this.htmlHeaderFormatter          = htmlHeaderFormatter;
     this.htmlTableOfContentsFormatter = htmlTableOfContentsFormatter;
     this.htmlContentFormatter         = htmlContentFormatter;
     this.htmlFooterFormatter          = htmlFooterFormatter;
     this.htmlResources                = htmlResources;
     this.fileSystem = fileSystem;
 }