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