Package org.books.domain

Examples of org.books.domain.LineItem


    public List<LineItem> getLineItems() {
        return lineItems;
    }

    public void AddBook(Book book, int quantity) {
        LineItem lineItem = new LineItem();
        lineItem.setBook(book);
        lineItem.setQuantity(quantity);
        lineItems.add(lineItem);
    }
View Full Code Here

TOP

Related Classes of org.books.domain.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.