public ExportService( ITableOfContentsService tableOfContentsService, IDocumentsService documentsService, IProjectsService projectsService, IPdfExportClient pdfExportClient) { _tableOfContentsService = tableOfContentsService; _documentsService = documentsService; _projectsService = projectsService; _pdfExportClient = pdfExportClient; }
public void SetUp() { _tableOfContentsService = new TableOfContentsService(new DummyHtmlStripper()); }
public ChaptersResolver(ITableOfContentsService tableOfContentsService) { _tableOfContentsService = tableOfContentsService; }
internal TableOfContentsPlugin(ITableOfContentsService tableOfContentsService, ITableOfContentsBuilder tableOfContentsBuilder) { _tableOfContentsService = tableOfContentsService; _tableOfContentsBuilder = tableOfContentsBuilder; }
public TableOfContentsPlugin() { _tableOfContentsService = new TableOfContentsService(new HtmlStripper()); _tableOfContentsBuilder = new TableOfContentsBuilder(this); }
/// <summary> /// Constructor. /// </summary> /// <param name="tableOfContentsService">Table of contents service.</param> public TableOfContentsController(ITableOfContentsService tableOfContentsService) { _tableOfContentsService = tableOfContentsService; }