public void RemoveComment(Comment comment)
 {
     comments.Remove(comment);
 }
 public void AddComment(Comment comment)
 {
     comments.Add(comment);
 }