Example #1
0
 public static void ListerVoyages(OutilsData outils)
 {
     Console.Clear();
     Console.ForegroundColor = ConsoleColor.Cyan;
     Console.WriteLine();
     CenterText("\tLISTE DES VOYAGES");
     Console.WriteLine();
     Console.WriteLine(new string('=', Console.WindowWidth));
     AfficherVoyages(outils.GetListeVoyages());
 }