public TypeArticle(int id, string nom, float encombrement, float TVA, float TTC, Departement departement) { this.id = id; this.nom = nom; this.encombrement = encombrement; this.TVA = TVA; this.TTC = TTC; this.departement = departement; }
public TypeArticle(string nom, float encombrement, float TVA, float TTC, Departement departement) { id = 0; this.nom = nom; this.encombrement = encombrement; //0 : ne va pas dans le convoyeur //1 , 1.5 et 3 vont dans le convoyeur //10 : hors convoyeur this.TVA = TVA; //this.HT = HT; this.TTC = TTC; this.departement = departement; }