/*
* 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 EtagereService {
public void add(Etagere etagere);
public void update(Etagere etagere);
public void remove(Etagere etagere);
public ArrayList<Etagere> getAll();
public Etagere getById(int id);
}