187188189190191192193194
return resultat; } catch (final SelectionException e) { throw new SystemeException(e); } }
5859606162636465666768
} personne = personnes.createPersonne(nom, prenom, adresse, ville, codePostal, telephone, dateNaissance, sexe, province, pays, courriel, nationnalite); } catch (final ActionException e) { throw new SystemeException(e); } return personne; }
211212213214215216217218
77787980818283848586
if( (personnes.getEntities(criteria)).isEmpty()) return false; } catch (final SelectionException e) { throw new SystemeException(e); } return true; }
103104105106107108109110111112
if( !personne.getComptes().getEntities(criteria).isEmpty() ) return true; } } catch (final SelectionException e) { throw new SystemeException(e); } return false; }
233234235236237238239240
126127128129130131132133134135
compte = personne.getComptes().createCompte(username, password, false); } else throw new UniqueException("Le nom d'usager existe déjà"); }catch (final ActionException e) { throw new SystemeException(e); } return compte; }
264265266267268269270271
{ return saisons.getActives(); } catch (final SelectionException e) { throw new SystemeException(e); } }
294295296297298299300301
+ "contient encore des inscriptions"); } } catch (final ActionException e) { throw new SystemeException(e); } }
323324325326327328329330
evenement.getSaison().getEvenements().remove(evenement); } catch (final ActionException e) { throw new SystemeException(e); } }