/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package Metier;
public class Categorie {
String categorie;
int id;
public String getNomCategorie() {
return categorie;
}
public void setCategorie(String categorie) {
this.categorie = categorie;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public Categorie(String categorie) {
this.categorie = categorie;
}
}