Example #1
0
 public Pasaje(string origen, string destino, Pasajero pasajero, float precio, DateTime fecha)
 {
     this.origen   = origen;
     this.destino  = destino;
     this.pasajero = pasajero;
     this.precio   = precio;
     this.fecha    = fecha;
 }
Example #2
0
 public Pasaje(string origen, string destino, Pasajero pasajero, float precio, DateTime fecha)
 {
     this.Origen       = origen;
     this.Destino      = destino;
     this.PasajeroProp = pasajero;
     this.Precio       = precio;
     this.Fecha        = fecha;
 }
Example #3
0
        /*public PasajeMicro()
         * { }*/

        public PasajeMicro(string origen, string destino, Pasajero pasajero, float precio, DateTime fecha, Servicio tipoServicio) : base(origen, destino, pasajero, precio, fecha)
        {
            this.tipoServicio = tipoServicio;
        }
Example #4
0
 public PasajeAvion(string origen, string destino, Pasajero pasajero, float precio, DateTime fecha, int cantidadEscalas) : base(origen, destino, pasajero, precio, fecha)
 {
     this.cantidadEscalas = cantidadEscalas;
 }