Examples of Aeropuerto


Examples of com.dsindigo.mundojoven.uno.model.Aeropuerto

    }
  }

  private static Vuelo mockVuelo() {

    Aeropuerto aeropuertoOrigen = new Aeropuerto( 1l, "MAD", Pais.ESPANA  );
    Aeropuerto aeropuertoDestino = new Aeropuerto( 2l, "MEX", Pais.MEXICO  );

    Vuelo vuelo = new Vuelo();
    vuelo.setId( 13l );
    vuelo.setClase( Clase.EJECUTIVO );
    vuelo.setOrigen( aeropuertoOrigen );
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.