Examples of Corriente


Examples of co.edu.eafit.ejemplopersistencia.modelo.gestionmvtosycuentas.Corriente

        System.out.println("dentro del ciclo");
        int tipo = rs.getInt("tipoCuenta");
        idCliente = rs.getInt("Cliente_idCliente");

        if (tipo == 1) {
          Corriente ctaCorriente = new Corriente();
          System.out.println("creo cuenta correinete");

          ctaCorriente.setTopeSobrejiro(rs.getInt("topeSobregiro"));
          ctaCorriente.setIdCuenta(rs.getInt("idCuenta"));
          ctaCorriente.setSaldo(rs.getInt("saldo"));
          ctaCorriente.setIntfechaApertura(rs
              .getString("fechaApertura"));
          ctaCorriente.setCliente(recuperarCliente(idCliente));
          cuenta = ctaCorriente;

        } else if (tipo == 2) {
          Ahorro ctaAhorro = new Ahorro();
          ctaAhorro.setInteres(rs.getFloat("interes"));
View Full Code Here

Examples of co.edu.eafit.ejemplopersistencia.modelo.gestionmvtosycuentas.Corriente

        System.out.println("dentro del ciclo");
        int tipo = rs.getInt("tipoCuenta");
        idCliente = rs.getInt("Cliente_idCliente");

        if (tipo == 1) {
          Corriente ctaCorriente = new Corriente();
          System.out.println("creo cuenta correinete");

          ctaCorriente.setTopeSobrejiro(rs.getInt("topeSobregiro"));
          ctaCorriente.setIdCuenta(rs.getInt("idCuenta"));
          ctaCorriente.setSaldo(rs.getInt("saldo"));
          ctaCorriente.setIntfechaApertura(rs
              .getString("fechaApertura"));
          ctaCorriente.setCliente(recuperarCliente(idCliente));
          cuenta = ctaCorriente;

        } else if (tipo == 2) {
          Ahorro ctaAhorro = new Ahorro();
          ctaAhorro.setInteres(rs.getFloat("interes"));
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.