Exemplo n.º 1
0
 public virtual void RemoveComment(Comment comment)
 {
     Comments.Remove(comment);
     comment.SetPost(null);
 }
Exemplo n.º 2
0
 public virtual void AddComment(Comment comment)
 {
     Comments.Add(comment);
     comment.SetPost(this);
 }