Пример #1
0
        public override SeaPizza MakeSeaPizza()
        {
            var products = new List <string> {
                "crab rolls", "salmon", "carrot", "peas", "pieces of crap"
            };
            var pizza = new SeaPizza(products, this.Name);

            return(pizza);
        }
Пример #2
0
        public override SeaPizza MakeSeaPizza()
        {
            var products = new List <string> {
                "suprices with seafood especially for the clients"
            };
            var pizza = new SeaPizza(products, this.Name);

            return(pizza);
        }