static void rechercherEtuMenu() { oE = rechercherEtu(); if (oE != null) { oE.afficherValeur(); } }
static void supprimerNote() { oE = rechercherEtu(); if (oE != null) { oE.afficherValeur(); oE.supprimerNote(); } }
static void ajouternote() { oE = rechercherEtu(); if (oE != null) { oE.afficherValeur(); oE.ajouterNote(); } }
static void modifierEtu() { oE = rechercherEtu(); if (oE != null) { oE.afficherValeur(); oE.saisrValeur(); } }
static void lister() { for (int i = 0; i < nbrEtu; i++) { oE = Etudiants[i]; Console.WriteLine("Information de l'etudiant N° {0} : ", i + 1); oE.afficherValeur(); } }