public void RemoveComment(Comment comment) { if (this._comments.Contains(comment)) { _comments.Remove(comment); } }
public void AddComment(Comment comment) { if (!this.Comments.Contains(comment)) { this._comments.Add(comment); } }