private void Modifier()
        {
            Afficher("Modifier une Destination");

            Destination choix = MethodesDestination.ChoisirDestination();

            choix.Id = ConsoleSaisie.SaisirEntierObligatoire("Quelle destination (Id) ?");

            MethodesDestination.ModifierDestination(choix);
        }
        private void Nouveau()
        {
            ConsoleHelper.AfficherEntete("Nouvelle Destination");

            Destination destination = new Destination()
            {
                Continent   = ConsoleSaisie.SaisirChaineObligatoire("Continent ?"),
                Pays        = ConsoleSaisie.SaisirChaineObligatoire("Pays ?"),
                Region      = ConsoleSaisie.SaisirChaineObligatoire("Region ?"),
                Description = ConsoleSaisie.SaisirChaineObligatoire("Description ?"),
            };

            MethodesDestination.CreerDestination(destination);
        }
 private void Supprimer()
 {
     Afficher("Supprimer une Destination");
     MethodesDestination.SupprimerDestination();
 }
 private void Afficher()
 {
     ConsoleHelper.AfficherEntete("Afficher Destination");
     this.liste = MethodesDestination.GetDestinations();
     ConsoleHelper.AfficherListe(this.liste, strategieAffichageDestinations);
 }