source: ether_eccad/trunk/ECCAD_INTERFACE/WEB-INF/src/org/medias/eccad/persistance/dao/ProduitDAO.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: 535 bytes
Line 
1package org.medias.eccad.persistance.dao;
2
3import java.util.List;
4
5import org.medias.eccad.modele.Produit;
6import org.medias.eccad.persistance.exception.PersistanceException;
7
8public interface ProduitDAO {
9        public List<Produit> getListProductByParam(long param) throws PersistanceException;
10        public Produit getProduitById(long id) throws PersistanceException;     
11        public List<Produit> getProduitByLink(Long produit, Long facteur) throws PersistanceException;
12        public Produit getProduitByName(String name) throws PersistanceException;       
13}
Note: See TracBrowser for help on using the repository browser.