/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Metier;
import java.util.ArrayList;
public interface CategorieService {
public ArrayList<Categorie> getAll();
public Categorie getById(int id);
public Categorie getByNom(String nomCategorie);
public void add(Categorie categorie);
public void remove(Categorie categorie);
}