/*
* 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;
public class Etagere {
private int nbLivreMax;
private int numero;
private int id;
private int profondeur;
private int hauteur;
public Etagere(int profondeur, int hauteur) {
this.profondeur = profondeur;
this.hauteur = hauteur;
}
public int getProfondeur() {
return profondeur;
}
public void setProfondeur(int profondeur) {
this.profondeur = profondeur;
}
public int getHauteur() {
return hauteur;
}
public void setHauteur(int hauteur) {
this.hauteur = hauteur;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getNbLivreMax() {
return nbLivreMax;
}
public void setNbLivreMax(int nbLivreMax) {
this.nbLivreMax = nbLivreMax;
}
public int getNumero() {
return numero;
}
public void setNumero(int numero) {
this.numero = numero;
}
}