858687888990919293
return floor.findFloorById(floorId); } public List<Place> findAllPlaces(String floor) { place = new PlaceDAO(); return place.findAllPlaceByFloor(floor); }
919293949596979899
return place.findAllPlaceByFloor(floor); } public List<Place> findAllBusyTable(String floor) { place = new PlaceDAO(); return place.findAllBusyPlacesByFloor(floor); }
163164165166167168169170171
return category.findAllCategories(); } public String findPlaceNameById(String placeId) { place = new PlaceDAO(); return place.findPlaceById(placeId).getName(); }
169170171172173174175176177
return place.findPlaceById(placeId).getName(); } public Place findPlaceById(String placeId) { place = new PlaceDAO(); return place.findPlaceById(placeId); }