Examples of IWorkReportLineDAO


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

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

     * @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
Copyright © 2018 www.massapi.com. 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.