示例#1
0
        public TextProcessor(long languageId)
        {
            _languageId = languageId;

            _textAnalyzer       = TextAnalyzerFactory.Create();
            _wordsQuery         = new WordsQuery();
            _sentencesQuery     = new SentencesQuery();
            _sentenceWordsQuery = new SentenceWordsQuery(_languageId);
        }
示例#2
0
 public KnowledgesParser()
 {
     _wordsQuery     = new WordsQuery();
     _sentencesQuery = new SentencesQuery();
 }