source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/persistance/dao/CatParametreDAO.java @ 68

Last change on this file since 68 was 68, checked in by cbipsl, 14 years ago

commit v1 eccad

  • Property svn:executable set to *
File size: 561 bytes
Line 
1package org.medias.eccad.persistance.dao;
2
3import java.util.List;
4
5import org.medias.eccad.modele.CatParametre;
6import org.medias.eccad.persistance.exception.PersistanceException;
7
8public interface CatParametreDAO {
9        public List<CatParametre> getListcatParametre() throws PersistanceException;
10        /*public CatParametre getCatParametreById(int id_param) throws PersistanceException;
11        public CatParametre getCatParametreByGrille(long id_grille) throws PersistanceException;
12        public CatParametre getCatParametreByName(String nom) throws PersistanceException;*/
13
14}
15
16
Note: See TracBrowser for help on using the repository browser.