Package com.sandrini.sandelivery.model

Examples of com.sandrini.sandelivery.model.Product


    public List<Product> getAllProducts() {
        return getSession().createQuery("from Product order by name").list();
    }

    public void deleteProduct(Long productId) {
        Product product = getProduct(productId);
        if (product != null) {
            getSession().delete(product);
        }
    }
View Full Code Here


            return null;
        }
    }

    public void createProduct(String name, String image, String url) {
        Product product = new Product();
        product.setName(name);
        product.setImage(image);
        product.setUrl(url);
        productDAO.createProduct(product);
    }
View Full Code Here

TOP

Related Classes of com.sandrini.sandelivery.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.