Example #1
0
 public static DataSet StatsGenre()
 {
     return(AdherentDAO.StatsGenre());
 }
Example #2
0
 public static DataSet StatsDdn()
 {
     return(AdherentDAO.StatsDdn());
 }
Example #3
0
 public static int AjoutUtilisateur(Adherent unAdherent)
 {
     return(AdherentDAO.AjoutUtilisateur(unAdherent));
 }
Example #4
0
 public static List <Adherent> FiltreUtilisateur(string recherche)
 {
     return(AdherentDAO.FiltreUtilisateur(recherche));
 }
Example #5
0
 // Méthode qui renvoit une valeur booléen en faisant appel à
 // la méthode VerifAdherent() de la DAL
 public static bool VerifAdherent(string value)
 {
     return(AdherentDAO.VerifAdherent(value));
 }
Example #6
0
 // Méthode qui supprime un Adherent avec la méthode DeleteAdherent de la DAL
 public static int SupprimerAdherent(int id)
 {
     return(AdherentDAO.DeleteAdherent(id));
 }
Example #7
0
 // Méthode qui modifie un nouvel Adherent avec la méthode
 // UpdateUtilisateur de la DAL
 public static bool ModifierAdherent(Adherent ut)
 {
     return(AdherentDAO.UpdateAdherent(ut));
 }
Example #8
0
 public static List <Adherent> GetDetailAdherents()
 {
     return(AdherentDAO.GetDetailAdherents());
 }
Example #9
0
 // Méthode qui renvoit une List d'objets Adherent en faisant appel à
 // la méthode GetAdherentRecherche() de la DAL
 public static List <Adherent> GetAdherentRecherche(string fullName)
 {
     return(AdherentDAO.GetAdherentRecherche(fullName));
 }
Example #10
0
 // Méthode qui renvoit une valeur booléen et ajoute un object adherent
 // BD avec la méthode AjoutAdherent de la DAL
 public static bool CreerAdherent(Adherent unAdherent)
 {
     return(AdherentDAO.AjoutAdherent(unAdherent));
 }
Example #11
0
 public static List <Adherent> GetLesAdherentByNaissance()
 {
     return(AdherentDAO.GetLesAdherentByNaissance());
 }
Example #12
0
 // Méthode qui renvoit une List d'objets Adherent en faisant appel à
 // la méthode GetAdherent() de la DAL
 public static List <Adherent> GetAdherent()
 {
     return(AdherentDAO.GetAdherent());
 }
Example #13
0
 // Méthode qui renvoit une valeur booléen en faisant appel à
 // la méthode VerifAdherentByIdAndLogin() de la DAL
 public static bool VerifAdherentByLoginAndId(string value, int id)
 {
     return(AdherentDAO.VerifAdherentByLoginAndId(value, id));
 }
Example #14
0
 public static DataSet StatsEvenementEleve()
 {
     return(AdherentDAO.StatsEvenementEleve());
 }
Example #15
0
 // Méthode qui retourne un Adherent en fonction de son ID
 public static Adherent GetOnceAdherent(int id)
 {
     return(AdherentDAO.GetOnceAdherent(id));
 }
Example #16
0
 public static int NbAdherentEvenement()
 {
     return(AdherentDAO.NbAdherentEvenement());
 }
Example #17
0
 public static int ModificationAdherent(Adherent unAdherent)
 {
     return(AdherentDAO.ModificationAdherent(unAdherent));
 }
Example #18
0
 public static List <Flux> GetAfficheFlux(int id_adherent)
 {
     return(AdherentDAO.GetAfficheFlux(id_adherent));
 }
Example #19
0
 // Méthode qui renvoit une valeur booléen en faisant appel à
 // la méthode GetRegexString() de la DAL
 public static bool GetRegexString(string value, string regex)
 {
     return(AdherentDAO.GetRegexString(value, regex));
 }