public Marshmallows(string name, double weight, double price, double sugar, double calories
                     , TypeOfMarshmallows typeOfMarshmallows, DriedFruits driedFruits, Thickener thickener)
     : base(name, weight, price, sugar, calories)
 {
     TypeOfMarshmallows = typeOfMarshmallows;
     DriedFruits        = driedFruits;
     Thickener          = thickener;
 }
 public Chocolate(string name, double weight, double price, double sugar, double calories
                  , TypeOfChocolate typeOfChocolate, DriedFruits driedFruits, double cocoa
                  , VariantsOfChocolateProducts variantsOfChocolateProducts)
     : base(name, weight, price, sugar, calories)
 {
     TypeOfChocolate             = typeOfChocolate;
     DriedFruits                 = driedFruits;
     PercentageOfCocoaProducts   = cocoa;
     VariantsOfChocolateProducts = variantsOfChocolateProducts;
 }