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