forked from ashyrokoriadov/DesignPatterns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
66 lines (54 loc) · 1.88 KB
/
Copy pathProgram.cs
File metadata and controls
66 lines (54 loc) · 1.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using System;
using Factory.Drinks;
using Factory.Drinks.Enum;
using Factory.FactoryMethod;
using Factory.Ingridients.IngridientsFactory;
namespace Factory
{
class Program
{
static void Main(string[] args)
{
//ShowExampleOne();
//ShowExampleTwo();
ShowExampleThree();
Console.ReadKey();
}
static void ShowExampleOne()
{
Console.WriteLine("Простая фабрика.");
Console.WriteLine();
var simpleFactory = new SimpleDrinksFactory();
var drink = simpleFactory.Order(DrinkType.COFFEE);
drink.Prepare();
drink.Serve();
Console.WriteLine();
Console.WriteLine("Простая фабрика - конец примера.");
}
static void ShowExampleTwo()
{
Console.WriteLine("Фабричный метод.");
Console.WriteLine();
DrinksFactory drink = new TeaDrinkFactory();
drink.Prepare();
drink.Serve();
Console.WriteLine();
Console.WriteLine("Фабричный метод - конец примера.");
}
static void ShowExampleThree()
{
Console.WriteLine("Абстрактная фабрика.");
Console.WriteLine();
//var blackTeaIngridients = new BlackTeaWithWaterAndSugar();
//var blackTea = new Drink(blackTeaIngridients);
//blackTea.Prepare();
//blackTea.Serve();
var coffeeIngridients = new PeruWithMilkAndSweetener();
var coffee = new Drink(coffeeIngridients);
coffee.Prepare();
coffee.Serve();
Console.WriteLine();
Console.WriteLine("Абстрактная фабрика - конец примера.");
}
}
}