예제 #1
0
 private static void PrintProductDetails(BakeryComponent product)
 {
     Console.WriteLine(); // some whitespace for readability
     Console.WriteLine("Item: {0}, Price: {1}", product.GetName(), product.GetPrice());
 }
예제 #2
0
 private static void PrintProductDetails(BakeryComponent product)
 {
     Console.WriteLine(); // some whitespace for readability
     Console.WriteLine("Item: {0}, Price: {1}", product.GetName(), product.GetPrice());
 }
예제 #3
0
 public NameCardDecorator(BakeryComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name  = "Name Card";
     this.m_Price = 4.0;
 }
 public ArtificialScentDecorator(BakeryComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name  = "Artificial Scent";
     this.m_Price = 3.0;
 }
 public ArtificialScentDecorator(BakeryComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Artificial Scent";
     this.m_Price = 3.0;
 }
예제 #6
0
 public CreamDecorator(BakeryComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name  = "Cream";
     this.m_Price = 1.0;
 }
 public NameCardDecorator(BakeryComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Name Card";
     this.m_Price = 4.0;
 }
예제 #8
0
 public CherryDecorator(BakeryComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name  = "Cherry";
     this.m_Price = 2.0;
 }
 public CreamDecorator(BakeryComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Cream";
     this.m_Price = 1.0;
 }
예제 #10
0
 protected Decorator(BakeryComponent baseComponent)
 {
     m_BaseComponent = baseComponent;
 }
 public CherryDecorator(BakeryComponent baseComponent)
     : base(baseComponent)
 {
     this.m_Name = "Cherry";
     this.m_Price = 2.0;
 }
예제 #12
0
 protected Decorator(BakeryComponent baseComponent)
 {
     m_BaseComponent = baseComponent;
 }