Package nl.nuggit.swaf.application.model

Examples of nl.nuggit.swaf.application.model.Product


public class ProductServiceImpl implements ProductService {

    public List<Product> listAll() {
        List<Product> products = new ArrayList<Product>();
        products.add(new Product(1L, "Juicy apple", 0.40));
        products.add(new Product(2L, "Fresh orange", 0.30));
        products.add(new Product(3L, "Yellow banana", 0.55));
        products.add(new Product(4L, "Delicious grapes", 0.50));
        products.add(new Product(5L, "Pink Peach", 0.45));
        return products;
    }
View Full Code Here

TOP

Related Classes of nl.nuggit.swaf.application.model.Product

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.