Package com.openbravo.pos.pda.dao

Examples of com.openbravo.pos.pda.dao.PlaceDAO


        return floor.findFloorById(floorId);
    }

    public List<Place> findAllPlaces(String floor) {
        place = new PlaceDAO();

        return place.findAllPlaceByFloor(floor);
    }
View Full Code Here


        return place.findAllPlaceByFloor(floor);
    }

    public List<Place> findAllBusyTable(String floor) {
        place = new PlaceDAO();

        return place.findAllBusyPlacesByFloor(floor);
    }
View Full Code Here

        return category.findAllCategories();
    }

    public String findPlaceNameById(String placeId) {
        place = new PlaceDAO();

        return place.findPlaceById(placeId).getName();
    }
View Full Code Here

        return place.findPlaceById(placeId).getName();
    }

    public Place findPlaceById(String placeId) {
        place = new PlaceDAO();

        return place.findPlaceById(placeId);
    }
View Full Code Here

TOP

Related Classes of com.openbravo.pos.pda.dao.PlaceDAO

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.