Exemplo n.º 1
0
 public void AddComment(Comment NewComment)
 {
     Comments.Add(NewComment);
 }
Exemplo n.º 2
0
 public UserOpinion(Comment CommentForLikeOrDislike, User CurrentUser, bool LikeIt)
 {
     Like = LikeIt;
     Comment = CommentForLikeOrDislike;
     Author = CurrentUser;
 }