Package ventas.com.beans

Examples of ventas.com.beans.BeanClientes


       
        //recepcion de parametros
        String criterio = request.getParameter("txtBuscar");

        BeanClientes clie = new BeanClientes();
        clie.setCriterio(criterio);


        //llamamos al DAO
///        dao.DAOArancel dao = new DAOArancel();

        List listaClientes;
///        try {
            listaClientes = clie.getLista(); //  dao.buscarArancelBD(cons);
//            request.setAttribute("clientesupc", listaClientes);
            sesion.setAttribute("clientesupc", listaClientes);
           
           
           
View Full Code Here

TOP

Related Classes of ventas.com.beans.BeanClientes

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.