26 lines
349 B
Java
26 lines
349 B
Java
|
public class ArticlePanier
|
||
|
{
|
||
|
private String ref = "";
|
||
|
private int quantite = 0;
|
||
|
|
||
|
public String getRef()
|
||
|
{
|
||
|
return this.ref;
|
||
|
}
|
||
|
|
||
|
public void setRef(String ref)
|
||
|
{
|
||
|
this.ref = ref;
|
||
|
}
|
||
|
|
||
|
public int getQuantite()
|
||
|
{
|
||
|
return this.quantite;
|
||
|
}
|
||
|
|
||
|
public void setQuantite(int quantite)
|
||
|
{
|
||
|
this.quantite = quantite;
|
||
|
}
|
||
|
}
|