public void AddComment(Comment NewComment) { Comments.Add(NewComment); }
public UserOpinion(Comment CommentForLikeOrDislike, User CurrentUser, bool LikeIt) { Like = LikeIt; Comment = CommentForLikeOrDislike; Author = CurrentUser; }