/* * 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 Physique; import Metier.StructureBibliotheque; import java.util.ArrayList; public interface StructureBibliothequeServiceJDBC { 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); }