public Restaurant Add(Restaurant addRestaurant)
 {
     db.Add(addRestaurant);
     return(addRestaurant);
 }
Exemplo n.º 2
0
 public Restaurant Add(Restaurant newRestaurant)
 {
     db.Add(newRestaurant);
     return(newRestaurant);
 }
 public Restaurant Insert(Restaurant Addrestaurant)
 {
     db.Add(Addrestaurant);
     return(Addrestaurant);
 }