/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package Physique; import Metier.Bibliothecaire; import java.util.ArrayList; public interface BibliothecaireServiceJDBC { ArrayList<Bibliothecaire> getAll(); void add(Bibliothecaire b); void remove(Bibliothecaire b); void update(Bibliothecaire b); }