public WaffleBuilder SetWaffleType(WaffleType waffleType)
 {
     Confection.WaffleType = waffleType;
     return(this);
 }
示例#2
0
 public Waffle(WaffleType waffleType, ManufacturerType manufacturer, int weight, int sugar) :
     base(manufacturer, weight, sugar)
 {
     WaffleType = waffleType;
 }