public Restaurant Add(Restaurant addRestaurant) { db.Add(addRestaurant); return(addRestaurant); }
public Restaurant Add(Restaurant newRestaurant) { db.Add(newRestaurant); return(newRestaurant); }
public Restaurant Insert(Restaurant Addrestaurant) { db.Add(Addrestaurant); return(Addrestaurant); }