package Exo2;

public interface IArticle {
	String getTitre();
	double getPrixHT();
	double getPrixTTC();
	int getAgeMini();
}