Exemple #1
0
 public void RemoveComment(ServiceComment comment)
 {
     unit.Comments.Delete(comment.ToDalComment());
     unit.Save();
 }
Exemple #2
0
 public void AddComment(ServiceComment comment)
 {
     unit.Comments.Create(comment.ToDalComment());
     unit.Save();
 }