public void Add(FoodRequestComment comment)
 {
     this.foodRequestCommentRepository.Add(comment);
     this.foodRequestCommentRepository.SaveChanges();
 }
 public void Update(FoodRequestComment comment)
 {
     this.foodRequestCommentRepository.Update(comment);
     this.foodRequestCommentRepository.SaveChanges();
 }