public static void AfficherParticipants(string titre)
        {
            ConsoleHelper.AfficherEntete(titre);
            List <Participant> liste = new List <Participant>();

            liste = MethodesParticipant.GetParticipants();
            ConsoleHelper.AfficherListe(liste, strategieAffichageParticipants);
        }
 private void Afficher()
 {
     ConsoleHelper.AfficherEntete("Afficher les Participants");
     this.liste = MethodesParticipant.GetParticipants();
     ConsoleHelper.AfficherListe(this.liste, strategieAffichageParticipants);
 }