public Utilisateur GetUtilisateurByMdp(string mdp) { try { UtilisateurDAO utilisateurDAO = new UtilisateurDAO(); MD5 md5Hash = MD5.Create(); string mdpHash = GetMd5Hash(md5Hash, mdp); Utilisateur utilisateur = utilisateurDAO.GetUtilisateurByMdp(mdpHash); if (utilisateur.IdUtilisateur == "") { throw new Exception("Magasinier introuvable"); } else { return(utilisateur); } } catch (Exception exception) { throw exception; } }