示例#1
0
 public PepperoniPizza(I_PizzaIngredientFactory ingredientFactory)
 {
     this.ingredientFactory = ingredientFactory;
 }
示例#2
0
 public VeggiePizza(I_PizzaIngredientFactory ingredientFactory)
 {
     this.ingredientFactory = ingredientFactory;
 }
 public CheesePizza(I_PizzaIngredientFactory ingredientFactory)
 {
     this.ingredientFactory = ingredientFactory;
 }
示例#4
0
 public ClamPizza(I_PizzaIngredientFactory ingredientFactory)
 {
     this.ingredientFactory = ingredientFactory;
 }