Exemple #1
0
        public IDocumentModificationLogService GetDocumentModificationLogService()
        {
            DocumentModificationLogService documentModification = new DocumentModificationLogService()
            {
                DocumentRepository = repositoryHandler.GetDocumentRepository(),
                DocumentModificationLogRepository = repositoryHandler.GetDocumentModificationLogRepository(),
                ContentRepository   = repositoryHandler.GetContentRepository(),
                HeaderRepository    = repositoryHandler.GetHeaderRepository(),
                FooterRepository    = repositoryHandler.GetFooterRepository(),
                ParagraphRepository = repositoryHandler.GetParagraphRepository(),
                TextRepository      = repositoryHandler.GetTextRepository()
            };

            return(documentModification);
        }