示例#1
0
 public CreamDecorator(BakeryComponet baseComponent)
     : base(baseComponent)
 {
     this.m_name  = "Cream";
     this.m_price = 2.0;
 }
示例#2
0
 public CherryDecorator(BakeryComponet baseComponent)
     : base(baseComponent)
 {
     this.m_name  = "Cherry";
     this.m_price = 4.0;
 }
示例#3
0
 protected Decorator(BakeryComponet baseComponent)
 {
     m_baseComponent = baseComponent;
 }