Example #1
0
 public List <string> GetStopListedWords(List <string> stoplist, List <string> words)
 {
     _stopListService = new StopListService(words);
     return(_stopListService.Call(stoplist));
 }
Example #2
0
        public static List <string> GetStemmedAndStoplistedWords(ArticleModel article, List <string> stoplist)
        {
            StopListService stopservice = new StopListService(GetWordsFromArticle(article));

            return(StemmingService.Call(stopservice.Call(stoplist)));
        }