Example #1
0
        /// <summary>
        /// Constructeur d'ingredient, contient 2 paramètres : un nomIngredient et une quantite.
        /// </summary>


        public Ingredient(string nomIngredient, Quantite quantite)
        {
            this.nomIngredient = nomIngredient;
            this.quantite      = quantite;
        }
Example #2
0
        /// <summary>
        /// Constructeur par défaut d'un Ingrédient.
        /// </summary>

        public Ingredient()
        {
            nomIngredient = "default";
            quantite      = new Quantite();
        }
Example #3
0
 public Ingredient(String a, Quantite q)
 {
     Aliment = a;
     Quantit = q;
 }