public VO_AirItinerary( string sFechaSalida, string sFechaLlegada, string sNroVuelo, string sClase, string sActionCode, string sNroPassenger, string sOperatingAirLine, string sMarketingAirLine, string sAirEquip, VO_Aeropuerto vo_AeropuertoOrigen, VO_Aeropuerto vo_AeropuertoDestino, bool bAirBook ) { this.sFechaSalida = sFechaSalida; this.sFechaLlegada = sFechaLlegada; this.sNroVuelo = sNroVuelo; this.sClase = sClase; this.sActionCode = sActionCode; this.sNroPassenger = sNroPassenger; this.sOperatingAirLine = sOperatingAirLine; this.sMarketingAirLine = sMarketingAirLine; this.sAirEquip = sAirEquip; this.vo_AeropuertoOrigen = vo_AeropuertoOrigen; this.vo_AeropuertoDestino = vo_AeropuertoDestino; this.bAirBook = bAirBook; }
/// <summary> /// Constructor. /// </summary> /// <param name="sSegmento">La linea especifica de la busqueda.</param> /// <param name="vo_AeropuertoBase">ciudad que permitira el cambio de ciudad.</param> /// <param name="lvo_AeropuertoesAlternativas">aeropuertos permitidos en la busqueda.</param> /// <param name="sMillaje">Kilometraje de aproximacion al aeropuerto base.</param> public VO_AeropuertoAlterno( string sSegmento, VO_Aeropuerto vo_AeropuertoBase, List <VO_Aeropuerto> lvo_AeropuertoesAlternativas, string sMillaje) { this.sSegmento = sSegmento; this.vo_AeropuertoBase = vo_AeropuertoBase; this.lvo_AeropuertoesAlternativas = lvo_AeropuertoesAlternativas; this.sMillaje = sMillaje; }
public VO_OriginDestinationInformation( string sFechaSalida, string sIntervaloSalida, string sFechaLlegada, string sIntervaloLlegada, VO_Aeropuerto vo_AeropuertoOrigen, VO_Aeropuerto vo_AeropuertoDestino, string oTipoSegmento, bool bSinDisponibilidad, string sTiempoAlternativo, VO_AeropuertoAlterno vo_AeropuertoAlterno ) { this.sFechaSalida = sFechaSalida; this.sIntervaloSalida = sIntervaloSalida; this.sFechaLlegada = sFechaLlegada; this.sIntervaloLlegada = sIntervaloLlegada; this.vo_AeropuertoOrigen = vo_AeropuertoOrigen; this.vo_AeropuertoDestino = vo_AeropuertoDestino; this.oTipoSegmento = oTipoSegmento; this.bSinDisponibilidad = bSinDisponibilidad; this.sTiempoAlternativo = sTiempoAlternativo; this.vo_AeropuertoAlterno = vo_AeropuertoAlterno; }