Пример #1
0
 public CVuelo(int num_id, DateTime fechasal, DateTime fechalleg, int ruta_id, int ori, int dest, String nombre1, String nombre2)
 {
     _id           = num_id;
     _fechaPartida = fechasal;
     _fechaLlegada = fechalleg;
     _ruta         = new CRuta(ruta_id, ori, dest, nombre1, nombre2);
 }
Пример #2
0
 public CVuelo(int num_id, DateTime fechasal, DateTime fechalleg, int ruta_id, int ori, int dest, String nombre1, String nombre2, int monto, string tipo, string fecha_vuelta)
 {
     _id           = num_id;
     _fechaPartida = fechasal;
     _fechaLlegada = fechalleg;
     _ruta         = new CRuta(ruta_id, ori, dest, nombre1, nombre2);
     _monto        = monto;
     _tipo         = tipo;
     _fechaVuelta  = fecha_vuelta;
 }