Package ventas.com.dao

Examples of ventas.com.dao.ClienteDAO.consultarPorId()


         public String editar(Long id){
        try {
            this.accion = "ACTUALIZAR";
            IClienteDAO dao = new ClienteDAO();
            this.cliente = dao.consultarPorId(id);
            this.mensaje = "";

        } catch (Exception e) {
           this.mensaje = e.getMessage();
            }
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.