Пример #1
0
        static void Main(string[] args)
        {
            Sundae sundae = new Sundae();
            Scoop s = new Scoop(Flavor.ChocolatChips);
            //sundae.AddScoop(s);
            sundae.AddProduct(s);
            Cherrry c = new Cherrry();
            sundae.AddProduct(c);
            //sundae.AddTopping(c);
            //Console.WriteLine(c.About());
            Console.WriteLine(sundae.About());

            WaffleCone w = new WaffleCone();
            Scoop PeanutButter = new Scoop(Flavor.PeanutButter);
            w.AddProduct(PeanutButter);
            //w.AddScoop(PeanutButter);
            Nuts n = new Nuts();
            //w.AddTopping(n);
            w.AddProduct(n);
            //Console.WriteLine(n.About());
            Console.WriteLine(w.About());

            Console.ReadKey();
        }
Пример #2
0
 // watch out constructor this.ScoopList = new List<Scoop>();
 public void AddScoop(Scoop s)
 {
     ScoopList.Add(s);
 }