Пример #1
0
 private void btnClientModify_Click(object sender, EventArgs e)
 {
     ClientForm clientForm = new ClientForm(MainForm.OPERATION_CLIENT_MODIFICATION);
         clientForm.Owner = this;
         clientForm.ShowDialog();
 }
Пример #2
0
 private void btnClientCreate_Click(object sender, EventArgs e)
 {
     ClientForm clientForm = new ClientForm(MainForm.OPERATION_CLIENT_CREATION);
         clientForm.Owner = this;
         clientForm.ShowDialog();
 }
Пример #3
0
 private void btnReservationCreate_creerClient_Click(object sender, EventArgs e)
 {
     ClientForm clientForm = new ClientForm("Création");
     clientForm.Owner = this;
     clientForm.ShowDialog();
 }