public void AjouterPersonne(string Nom, string Prenom, int Age)
        {
            //_Stockage.ListePersonnes.Add(new Personne() { Nom = Nom, Prenom = Prenom, Age = Age });

            ICommand Commande = new CommandeAjouterPersonne(Nom, Prenom, Age);
            MoteurPrevalence.Moteur.ExecuteCommand(Commande);
        }