Subversion Repositories eFlore/Applications.coel

Compare Revisions

Ignore whitespace Rev 1451 → Rev 1457

/branches/v1.1-aramon/src/org/tela_botanica/client/Modele.java
182,10 → 182,15
// Gestion des données de la table coel_structure_a_personne
if (structureId != null && roleId != null) {
StructureAPersonneAsyncDao sapDao = new StructureAPersonneAsyncDao(vueARafraichir);
sapDao.selectionner(structureId, roleId, seqId);
sapDao.selectionner(false, structureId, roleId, null, 0, -1, seqId);
}
}
public void selectionnerStructureAPersonne(Rafraichissable vueARafraichir, String structureId, String roleId, String recherche, int start, int nbElements, Integer seqId) {
StructureAPersonneAsyncDao sapDao = new StructureAPersonneAsyncDao(vueARafraichir);
sapDao.selectionner(true, structureId, roleId, recherche, start, nbElements, seqId);
}
public void modifierStructureAPersonne(Rafraichissable vueARafraichir, StructureAPersonne personnel) {
StructureAPersonneAsyncDao structureAPersonneDao = new StructureAPersonneAsyncDao(vueARafraichir);
structureAPersonneDao.modifier(personnel);