Пример #1
0
        public DataSet getVilles()
        {
            clsVol  vol  = new clsVol();
            DataSet myDS = new DataSet();

            myDS = vol.liste_Villes();

            return(myDS);
        }
Пример #2
0
        public DataSet getVols(string villeDepart, string villeArrivee)
        {
            clsVol  vol  = new clsVol();
            DataSet myDS = new DataSet();

            myDS = vol.liste_Vols(villeDepart, villeArrivee);

            return(myDS);
        }
Пример #3
0
 public clsReservationMSMQ()
 {
     this.hotel = new clsHotel();
     this.vol   = new clsVol();
 }