Package entidades

Examples of entidades.Alumno


      throws ValidatorException {
    // TODO Auto-generated method stub
    String valor = (String) value;
       
        System.out.println("valor que llega al validator: " + valor);
    Alumno tmpAlumno = new Alumno();
        tmpAlumno.setStrCodigoAlumno(valor);
       
    SolicitudRetiro tmpSR = null;
    try {
      tmpSR = retiroService.verificarExistenciaSR(tmpAlumno);
    } catch (Exception e) {
View Full Code Here

TOP

Related Classes of entidades.Alumno

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.