public void Delete(int restaurantID) { var restuarent = GetByRestaurantId(restaurantID); if (restuarent != null) { _RestaurantRepo.Delete(restuarent); } }