public ExportService(
     ITableOfContentsService tableOfContentsService,
     IDocumentsService documentsService,
     IProjectsService projectsService,
     IPdfExportClient pdfExportClient)
 {
     _tableOfContentsService = tableOfContentsService;
     _documentsService       = documentsService;
     _projectsService        = projectsService;
     _pdfExportClient        = pdfExportClient;
 }
Example #2
0
 public void SetUp()
 {
     _tableOfContentsService = new TableOfContentsService(new DummyHtmlStripper());
 }
Example #3
0
 public ChaptersResolver(ITableOfContentsService tableOfContentsService)
 {
     _tableOfContentsService = tableOfContentsService;
 }
 public void SetUp()
 {
     _tableOfContentsService = new TableOfContentsService(new DummyHtmlStripper());
 }
 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;
 }
Example #8
0
 internal TableOfContentsPlugin(ITableOfContentsService tableOfContentsService, ITableOfContentsBuilder tableOfContentsBuilder)
 {
     _tableOfContentsService = tableOfContentsService;
     _tableOfContentsBuilder = tableOfContentsBuilder;
 }
Example #9
0
 public TableOfContentsPlugin()
 {
     _tableOfContentsService = new TableOfContentsService(new HtmlStripper());
     _tableOfContentsBuilder = new TableOfContentsBuilder(this);
 }