Beispiel #1
0
 private List <string> GetLikedByWithoutUser(EventForumAnswer answer, string userId)
 {
     return(answer.LikedBy
            .Where(uId => uId != userId)
            .ToList());
 }
Beispiel #2
0
 private bool IsQuestionLikedByUser(EventForumAnswer answer, string userId)
 {
     return(answer.LikedBy.Any(uId => uId == userId));
 }