Exemplo n.º 1
0
        private void valider_Click(object sender, EventArgs e)
        {
            msgInfo.Text = "Traitement en cours...";

            clsReservationMSMQ myReservation = new clsReservationMSMQ();

            myReservation.putInMSMQQueue(hotelCourant.idHotel, volCourant.idVol, nom.Text, prenom.Text);

            this.msgInfo.ForeColor = System.Drawing.Color.Green;
            msgInfo.Text           = "Le traitement a bien été placé dans la file.";
        }
Exemplo n.º 2
0
        public void OnTimer(object sender, System.Timers.ElapsedEventArgs args)
        {
            clsReservationMSMQ myReservation = new clsReservationMSMQ();

            myReservation.ReservationMSMQ();
        }