Package org.libreplan.business.workreports.daos

Examples of org.libreplan.business.workreports.daos.IWorkReportLineDAO


    public String toString() {
        return super.toString() + " :: " + getName();
    }

    public List<WorkReportLine> getWorkReportLines(boolean sortedByDate) {
        IWorkReportLineDAO workReportLineDAO = Registry.getWorkReportLineDAO();
        return workReportLineDAO.findByOrderElementAndChildren(this, sortedByDate);
    }
View Full Code Here


     * @param sortedByDate
     * @return list of workReportLines
     */
    public List<WorkReportLine> getWorkReportLines(Date startDate,
            Date endDate, boolean sortedByDate) {
        IWorkReportLineDAO workReportLineDAO = Registry.getWorkReportLineDAO();
        return workReportLineDAO.findByOrderElementAndChildrenFilteredByDate(
                this, startDate, endDate, sortedByDate);
    }
View Full Code Here

TOP

Related Classes of org.libreplan.business.workreports.daos.IWorkReportLineDAO

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.