private void txt_PrixBillet_Validating(object sender, CancelEventArgs e)
 {
     DeclarationsGlobales.ValidationTxtNumerique(txt_PrixBillet, "Le prix doit être numérique !!!", errorProviderTxt, e);
 }
 private void txt_capacite_Validating(object sender, CancelEventArgs e)
 {
     DeclarationsGlobales.ValidationTxtNumerique(txt_capacite, "La capacité doit être numérique !!!", errorProviderTxt, e);
 }
 private void txt_nbrVoy_Validating(object sender, CancelEventArgs e)
 {
     DeclarationsGlobales.ValidationTxtNumerique(txt_nbrVoy, "Le champ doit être numérique !!!", errorProviderTxt, e);
 }