Example #1
0
 public virtual void AddComment(Comment comment)
 {
     comment.Document = this;
     Comments.Add(comment);
 }
Example #2
0
 public CommentView()
 {
     _comment = new Comment();
 }
Example #3
0
 public CommentView(Comment comment)
 {
     _comment = comment;
 }
Example #4
0
 public virtual void AddComment(Comment comment)
 {
     _documentSimple.AddComment(comment);
     NotifyPropertyChanged("Comments");
 }