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