示例#1
0
        public DataSet getHotels(string ville)
        {
            clsHotel hotel = new clsHotel();
            DataSet  myDS  = new DataSet();

            myDS = hotel.liste_Hotels(ville);

            return(myDS);
        }
示例#2
0
 public clsReservationMSMQ()
 {
     this.hotel = new clsHotel();
     this.vol   = new clsVol();
 }
示例#3
0
        public void InstanceOK()
        {
            clsHotel AnHotel = new clsHotel(); //create an instance of our class clsHotel

            Assert.IsNotNull(AnHotel);         //check to see the class is not null
        }