Пример #1
0
        //Constructeurs

        public Produit()
        {
            this.numero   = 0000;
            this.quantite = 00;
            this.prix     = 00;
            this.type     = EnumTypeProduit.unknown;
        }
Пример #2
0
 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;
 }