Exemplo n.º 1
0
 public override void Prepare()
 {
     dough  = ingredientFactory.createDough();
     sauce  = ingredientFactory.createSauce();
     cheese = ingredientFactory.createCheese();
     clams  = ingredientFactory.createClams();
 }
Exemplo n.º 2
0
 public void prepare()
 {
     Console.WriteLine("Preparing " + Name);
     dough  = ingredientFactory.createDough();
     sauce  = ingredientFactory.createSauce();
     cheese = ingredientFactory.createCheese();
     clam   = ingredientFactory.createClams();
 }