Beispiel #1
0
        public bool CheckLosePlay(string text)
        {
            if (_wordsRepository.GetWordsStartingLike(text).Count().Equals(0))
            {
                return(true);
            }

            if (_wordsRepository.ContainsWord(text))
            {
                return(true);
            }

            return(false);
        }