コード例 #1
0
 public Sandwich(IBread topBread, CondimentList topCondiments, IngredientList ingredients, CondimentList bottomCondiments, IBread bottomBread)
 {
     _topBread         = topBread;
     _topCondiments    = topCondiments;
     _ingredients      = ingredients;
     _bottomCondiments = bottomCondiments;
     _bottomBread      = bottomBread;
 }
コード例 #2
0
ファイル: Sandwich.cs プロジェクト: Maceage/DesignPatterns
 public Sandwich(IBread topBread, CondimentList topCondiments, IngredientList ingredients, CondimentList bottomCondiments, IBread bottomBread)
 {
     _topBread = topBread;
     _topCondiments = topCondiments;
     _ingredients = ingredients;
     _bottomCondiments = bottomCondiments;
     _bottomBread = bottomBread;
 }