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