Exemple #1
0
 static void rechercherEtuMenu()
 {
     oE = rechercherEtu();
     if (oE != null)
     {
         oE.afficherValeur();
     }
 }
Exemple #2
0
 static void supprimerNote()
 {
     oE = rechercherEtu();
     if (oE != null)
     {
         oE.afficherValeur();
         oE.supprimerNote();
     }
 }
Exemple #3
0
 static void ajouternote()
 {
     oE = rechercherEtu();
     if (oE != null)
     {
         oE.afficherValeur();
         oE.ajouterNote();
     }
 }
Exemple #4
0
 static void modifierEtu()
 {
     oE = rechercherEtu();
     if (oE != null)
     {
         oE.afficherValeur();
         oE.saisrValeur();
     }
 }
Exemple #5
0
 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();
     }
 }