Exemple #1
0
 public Review Add(Review newReview)
 {
     _context.Add(newReview);
     _context.SaveChanges();
     return(newReview);
 }
 public Restaurant Add(Restaurant newRestaurant)
 {
     _context.Add(newRestaurant);
     return(newRestaurant);
 }