Exemple #1
0
        public bool ChangerMotDePasse(ChangerMotDePasse e)
        {
            UtilisateurService us = new UtilisateurService();

            return(us.ChangerMotDePasse(e.login, e.vieuxMotDePasse, e.nouveauMotDePasse, e.option));

            throw new NotImplementedException();
        }
Exemple #2
0
        public bool ChangerMotDePasse(NouveauMotDePasse e)
        {
            UtilisateurService us = new UtilisateurService();

            return(us.ChangerMotDePasse(e.login, e.ancienMotDePasse, e.motDePasse, null));
        }