Examples of Ahorro


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

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
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.