Package br.com.yaw.sjc.dao

Examples of br.com.yaw.sjc.dao.MercadoriaDAO.findById()


    public void actionPerformed(ActionEvent e) {
      Integer id = getIdMercadoria();
      if (id != null) {
        try {
          MercadoriaDAO dao = new MercadoriaDAOJDBC();
          Mercadoria m = dao.findById(id);
          if (m != null) {
            dao.remove(m);
          }
         
          setVisible(false);
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.