Exemplo n.º 1
0
        private IEnumerable <Word> GetRelatedWords(Dictionary dictionary)
        {
            var itsWords = wordRepository.GetList().Where(x => x.DictionaryId == dictionary.Id).ToArray();

            return(itsWords);
        }