Package com.charitas.dao.impl

Examples of com.charitas.dao.impl.ProductDAOImpl.save()


            prod1.setCategory(cat1);
            prod1.setDescription("tes prod");
            prod1.setExpiredDate(cal.getTime());
            prod1.setName("permen");
            prod1.setPrice(7500);
            productDAO.save(prod1);
                   
            Product product = new Product();
            List<Product> allData = productDAO.findAll();
           
            for(int i = 0; i < allData.size(); i++ ){
View Full Code Here

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.