Beispiel #1
0
 private void btn_reserve_Click(object sender, EventArgs e)
 {
     var index = listV_rooms.SelectedItems[0].Text;
     Hotel_Service.HotelServiceClient client = new Hotel_Service.HotelServiceClient();
     string i = index.ToString();
     string mess = client.Reserve_Room( i );
     if (mess != null)
     {
         MessageBox.Show(mess);
     }
     else
     {
         Update_();
     }
 }