コード例 #1
0
        public IndexModel(
            IDocumentAppService documentAppService,
            IDocumentToHtmlConverterFactory documentToHtmlConverterFactory,
            IProjectAppService projectAppService,
            IOptions <DocsUiOptions> options,
            IDocumentSectionRenderer documentSectionRenderer)
        {
            ObjectMapperContext = typeof(DocsWebModule);

            _documentAppService             = documentAppService;
            _documentToHtmlConverterFactory = documentToHtmlConverterFactory;
            _projectAppService       = projectAppService;
            _documentSectionRenderer = documentSectionRenderer;
            _uiOptions = options.Value;
        }