Package org.simplecart.dao

Source Code of org.simplecart.dao.LineItemDAO

package org.simplecart.dao;

import org.simplecart.contract.LineItem;
import net.sf.hibernate.*;

public class LineItemDAO extends BaseDAO {

    public LineItemDAO() {
        super();
        DAOClassType = LineItem.class;
    }

    /**
     * @return LineItem by ID
     * @param id
     * @param lock
     */
    public LineItem findById(Long id, boolean lock) throws HibernateException {
        LineItem lineItem = null;

        lineItem = (LineItem) abstractFindById(id, lock);
        return lineItem;
    }
}
TOP

Related Classes of org.simplecart.dao.LineItemDAO

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.