Package org.simplecart.contract

Examples of org.simplecart.contract.LineItem


     * @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;
    }
View Full Code Here

TOP

Related Classes of org.simplecart.contract.LineItem

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.