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