Example #1
0
 public Utilisateur getStagiairesByLogin(String login) throws Exception {
   try {
     return UtilisateurDAO.getStagiairesByLogin(login);
   } catch (Exception e) {
     throw new Exception(e);
   }
 }
Example #2
0
 public void delete(Utilisateur stagiaire) throws Exception {
   try {
     UtilisateurDAO.delete(stagiaire);
   } catch (Exception e) {
     throw new Exception(e);
   }
 }
Example #3
0
 public static Utilisateur rechercheParId(int id) throws Exception {
   try {
     return UtilisateurDAO.rechercheParId(id);
   } catch (Exception e) {
     throw new Exception(e);
   }
 }
Example #4
0
  public static List<Utilisateur> importerListeStagaire() throws Exception {

    try {
      return UtilisateurDAO.importerListeStagiaire();
    } catch (Exception e) {
      throw new Exception(e);
    }
  }
Example #5
0
  public void insert(Utilisateur stagiaire) throws Exception {

    try {
      UtilisateurDAO.insert(stagiaire);
    } catch (Exception e) {
      throw new Exception(e);
    }
  }