コード例 #1
0
ファイル: PartsOfSpeechExtension.cs プロジェクト: matm94/Femd
        public static Sentence GetSentenceOrNull(this ILectureRepository _lectureRepository, Guid id)
        {
            var sentence = _lectureRepository.GetSentence(id);

            IsExist(sentence, id);
            return(sentence);
        }