static void Main(string[] args)
 {
     PizzaStore store   = new PizzaStore(new PizzaFactory());
     Pizza      myPizza = store.OrderPizza("Clam");
 }