Package org.sfsoft.cine.base

Examples of org.sfsoft.cine.base.Director


  private void altaDirector() {
    JDirector jDirector = new JDirector();
    if (jDirector.mostrarDialogo() == Util.Accion.CANCELAR)
      return;
   
    Director director = jDirector.getDirector();
    Session sesion = HibernateUtil.getCurrentSession();
    sesion.beginTransaction();
    sesion.save(director);
    sesion.getTransaction().commit();
    sesion.close();
View Full Code Here


    return accion;
  }
 
  public Director getDirector() {
   
    Director director = new Director();
    director.setNombre(nombre);
    director.setFechaNacimiento(fechaNacimiento);
   
    return director;
  }
View Full Code Here

TOP

Related Classes of org.sfsoft.cine.base.Director

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.