package Model;

public class prevision_vente {
	private int date;
	private int quantite;

public prevision_vente( int d, int q){
	this.date=d;
	this.quantite=q;
}

public int getQuantite() {
	return quantite;
}

public void setQuantite(int quantite) {
	this.quantite = quantite;
}


}
