package vente;

public interface IArticle {
	String getTitre();
	double getPrixHT();
	double getPrixTTC();
}