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