コード例 #1
0
 private void buttonAddReservations_Click(object sender, EventArgs e)
 {
     if (CurrentClient != null)
     {
         FormNewReservation form = new FormNewReservation();
         form.CurrentClient = CurrentClient;
         form.ShowDialog();
         PopulateReceptions();
     }
 }
コード例 #2
0
 private void buttonAddReservations_Click(object sender, EventArgs e) {
   if(CurrentClient != null) {
     FormNewReservation form = new FormNewReservation();
     form.CurrentClient = CurrentClient;
     form.ShowDialog();
     PopulateReceptions();
   }
 }