Ejemplo n.º 1
0
 public WaffleBuilder SetWaffleType(WaffleType waffleType)
 {
     Confection.WaffleType = waffleType;
     return(this);
 }
Ejemplo n.º 2
0
 public Waffle(WaffleType waffleType, ManufacturerType manufacturer, int weight, int sugar) :
     base(manufacturer, weight, sugar)
 {
     WaffleType = waffleType;
 }