public bool AjouterAdherent(Adherent adherent) { /** TODO : un peu de vérification tout de même */ if (adherent == null) { return(false); } Adherent a = RechercherAdherent(adherent.Id); if (a != null) { return(false); } listeAdherents.Add(adherent); return(true); }