Exemplo n.º 1
0
        internal override string Prepare()
        {
            StringBuilder sb = new StringBuilder();

            sb.AppendLine($"Preparing {Name}");

            Dough  = IngredientFactory.CreateDough();
            Sauce  = IngredientFactory.CreateSauce();
            Cheese = IngredientFactory.CreateCheese();
            Clam   = IngredientFactory.CreateClams();

            return(sb.ToString());
        }