public int FindWordInText(string textToFind, int atricleId) { Article article = articleDao.SelectById(atricleId); string text = article.Text; TextFinder finder = new TextFinder(); int occurancesInText = finder.FindTextOccurances(textToFind, text); return(occurancesInText); }