/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package Metier; import java.util.ArrayList; public interface StructureBibliothequeService { public void add(StructureBibliotheque structure); public void update(StructureBibliotheque structure); public void remove(StructureBibliotheque structure); public ArrayList<StructureBibliotheque> getAll(); public StructureBibliotheque getById(int id); public StructureBibliotheque getByNom(String nom); }