public static Sentence GetSentenceOrNull(this ILectureRepository _lectureRepository, Guid id) { var sentence = _lectureRepository.GetSentence(id); IsExist(sentence, id); return(sentence); }