Package co.edu.eafit.ejemplopersistencia.modelo.gestionmvtosycuentas

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


              .getString("fechaApertura"));
          ctaCorriente.setCliente(recuperarCliente(idCliente));
          cuenta = ctaCorriente;

        } else if (tipo == 2) {
          Ahorro ctaAhorro = new Ahorro();
          ctaAhorro.setInteres(rs.getFloat("interes"));
          ctaAhorro.setIdCuenta(rs.getInt("idCuenta"));
          ctaAhorro.setSaldo(rs.getInt("saldo"));
          ctaAhorro
              .setIntfechaApertura(rs.getString("fechaApertura"));
          ctaAhorro.setCliente(recuperarCliente(idCliente));
          cuenta = ctaAhorro;
        }
      }
      sentencia.close();
      // JDBCConnection.cerrarConexion();
View Full Code Here


              .getString("fechaApertura"));
          ctaCorriente.setCliente(recuperarCliente(idCliente));
          cuenta = ctaCorriente;

        } else if (tipo == 2) {
          Ahorro ctaAhorro = new Ahorro();
          ctaAhorro.setInteres(rs.getFloat("interes"));
          ctaAhorro.setIdCuenta(rs.getInt("idCuenta"));
          ctaAhorro.setSaldo(rs.getInt("saldo"));
          ctaAhorro
              .setIntfechaApertura(rs.getString("fechaApertura"));
          ctaAhorro.setCliente(recuperarCliente(idCliente));
          cuenta = ctaAhorro;
        }
      }
      sentencia.close();
      // JDBCConnection.cerrarConexion();
View Full Code Here

TOP

Related Classes of co.edu.eafit.ejemplopersistencia.modelo.gestionmvtosycuentas.Ahorro

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.