public HtmlToWordGenerator(string htmlDocFilePath)
 {
     _wordGenerator = new WordDocumentGenerator();
     var _htmlFileContentRetriever = new RetrieveFileContent(htmlDocFilePath);
     _htmlFileContent = _htmlFileContentRetriever.FileContent();
     _htmlDocFilePath = htmlDocFilePath;
 }
Ejemplo n.º 2
0
        public HtmlToWordGenerator(string htmlDocFilePath)
        {
            _wordGenerator = new WordDocumentGenerator();
            var _htmlFileContentRetriever = new RetrieveFileContent(htmlDocFilePath);

            _htmlFileContent = _htmlFileContentRetriever.FileContent();
            _htmlDocFilePath = htmlDocFilePath;
        }