Package com.openbravo.pos.pda.dao

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


    private CategoryDAO category;
    private TaxDAO tax;
    private TaxesLogic taxesLogic;

    public List<Floor> findAllFloors() {
        floor = new FloorDAO();

        return floor.findAllFloors();
    }
View Full Code Here


        return product.findAllAuxiliars(id);
    }

    public String findFloorNameById(String floorId) {
        floor = new FloorDAO();

        return floor.findFloorById(floorId).getName();
    }
View Full Code Here

        return floor.findFloorById(floorId).getName();
    }

    public Floor findFloorById(String floorId) {
        floor = new FloorDAO();

        return floor.findFloorById(floorId);
    }
View Full Code Here

        return place.findAllBusyPlacesByFloor(floor);
    }

    public String findTheFirstFloor() {
        floor = new FloorDAO();

        return floor.findAllFloors().get(0).getId();
    }
View Full Code Here

TOP

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

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.