Beispiel #1
0
        public static void Main(string[] args)
        {
            Sourdough sourdough = new Sourdough();

            sourdough.Make();

            TwelveGrain twelveGrain = new TwelveGrain();

            twelveGrain.Make();

            WholeWheat wholeWheat = new WholeWheat();

            wholeWheat.Make();
        }
Beispiel #2
0
        static void Main(string[] args)
        {
            var wholeWheat = new WholeWheat();

            wholeWheat.Make();

            var sourdough = new Sourdough();

            sourdough.Make();

            var twelveGrain = new TwelveGrain();

            twelveGrain.Make();
        }