示例#1
0
 public Restaurant Add(Restaurant newRestaurant)
 {
     db.Add(newRestaurant);
     return(newRestaurant);
 }
 public Restaurant Add(Restaurant restaurant)
 {
     DbContext.Add(restaurant);
     return(restaurant);
 }