//Constructeurs public Produit() { this.numero = 0000; this.quantite = 00; this.prix = 00; this.type = EnumTypeProduit.unknown; }
public Produit(int numero, int quantite, double prix, DateTime date, EnumTypeProduit type) { this.numero = numero; this.quantite = quantite; this.prix = prix; this.type = type; this.dateFab = date; }