public virtual void AddComment(Comment comment) { comment.Document = this; Comments.Add(comment); }
public CommentView() { _comment = new Comment(); }
public CommentView(Comment comment) { _comment = comment; }
public virtual void AddComment(Comment comment) { _documentSimple.AddComment(comment); NotifyPropertyChanged("Comments"); }