Ejemplo n.º 1
0
 public void Add(Comment comment)
 {
     this.comments.Add(comment);
     this.comments.SaveChanges();
 }
Ejemplo n.º 2
0
 public void Delete(Comment comment)
 {
     this.comments.Delete(comment);
     this.comments.SaveChanges();
 }