コード例 #1
0
ファイル: ChaiDecorator.cs プロジェクト: KoyoA/patterns
 public ChaiDecorator(Tea teaToMakeChai)
 {
     this.addTea(teaToMakeChai);
     chaiIngredients.Add("bay leaf");
     chaiIngredients.Add("cinnamon stick");
     chaiIngredients.Add("ginger");
     chaiIngredients.Add("honey");
     chaiIngredients.Add("soy milk");
     chaiIngredients.Add("vanilla bean");
 }
コード例 #2
0
ファイル: ChaiDecorator.cs プロジェクト: KoyoA/patterns
 private void addTea(Tea teaToMakeChaiIn)
 {
     this.teaToMakeChai = teaToMakeChaiIn;
 }
コード例 #3
0
ファイル: ChaiDecorator.cs プロジェクト: swelham/patterns
 private void addTea(Tea teaToMakeChaiIn)
 {
     this.teaToMakeChai = teaToMakeChaiIn;
 }