public override Calcone MakeCalcone()
        {
            var products = new List <string> {
                "tomatos", "filet", "yellow cheese", "white cheese"
            };
            var pizza = new Calcone(products, this.Name);

            return(pizza);
        }
Exemple #2
0
        public override Calcone MakeCalcone()
        {
            var ingrediants = new List <string> {
                "tomatoes",
                "white cheese",
                "yellow cheese",
                "blue cheese",
                "extra smelly cheese"
            };

            var pizza = new Calcone(ingrediants, this.Name);

            return(pizza);
        }