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