public IceWithChocolateSauce(IceCream ic) : base(ic)
 {
     this.Cost = 0.75;
     this.Ingredients = "chocolate sauce";
 }
 protected IceDecorator(IceCream ice)
 {
     _ice = ice;
 }
 public IceWithMandM(IceCream ic) : base(ic)
 {
     this.Cost = 1.25;
     this.Ingredients = " M&M";
 }
 public IceWithSprinkles(IceCream ic) : base(ic)
 {
     this.Cost = 0.25;
     this.Ingredients = "sprinkles";
 }