/* * 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.Etagere; import java.util.ArrayList; public interface EtagereServiceJDBC { public void add(Etagere etagere); public void update(Etagere etagere); public void remove(Etagere etagere); public ArrayList<Etagere> getAll(); public Etagere getById(int id); }