public Produit(string c, string lib, decimal prix, TVA t, int qte, int ale, Famille f, Fournisseur four) { tva = new TVA(); f = new Famille(); fournisseur = new Fournisseur(); this.codart = c; this.libelle = lib; this.pri_uni = prix; this.tva = t; this.qte_stock = qte; this.stock_ale = ale; this.f = f; this.fournisseur = four; }
public Produit() { tva = new TVA(); f = new Famille(); fournisseur = new Fournisseur(); }