Advertisement
Guest User

Untitled

a guest
May 7th, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. package tp.dao;
  2.  
  3. import java.util.List;
  4.  
  5. import tp.entity.Produit;
  6.  
  7. public interface IDao {
  8.  
  9.     public void addProduit(Produit p);
  10.     public void deleteProduit(Produit p);
  11.     public Produit getProduit(long idProduit);
  12.     List<Produit> getProduits();
  13.    
  14.    
  15.    
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement