public void Add(Comment comment)
 {
     this.comments.Add(comment);
     this.comments.SaveChanges();
 }
 public void Delete(Comment comment)
 {
     this.comments.Delete(comment);
     this.comments.SaveChanges();
 }