public HtmlDocumentFormatter(Configuration configuration, HtmlHeaderFormatter htmlHeaderFormatter, HtmlTableOfContentsFormatter htmlTableOfContentsFormatter, HtmlContentFormatter htmlContentFormatter, HtmlFooterFormatter htmlFooterFormatter, HtmlResourceSet htmlResources) { this.configuration = configuration; this.htmlHeaderFormatter = htmlHeaderFormatter; this.htmlTableOfContentsFormatter = htmlTableOfContentsFormatter; this.htmlContentFormatter = htmlContentFormatter; this.htmlFooterFormatter = htmlFooterFormatter; this.htmlResources = htmlResources; }
public HtmlDocumentFormatter(Configuration 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; }
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; }