Beispiel #1
0
        public ColdDishes PrepareMeatMenu()
        {
            ColdDishes coldDishes = new ColdDishes();

            coldDishes.addSalad(new StandardCaesar());
            coldDishes.addCanape(new MeatCanape());
            return(coldDishes);
        }
Beispiel #2
0
        public ColdDishes PrepareVegMenu()
        {
            ColdDishes coldDishes = new ColdDishes();

            coldDishes.addSalad(new VegCaesar());
            coldDishes.addCanape(new FishCanape());
            return(coldDishes);
        }