-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProgram.cs
34 lines (30 loc) · 986 Bytes
/
Program.cs
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
using FactoryMethodPattern.Factory;
using FactoryMethodPattern.SecondImplementation.Concrete;
using FactoryMethodPattern.SecondImplementation.Factory;
using FactoryMethodPattern.SecondImplementation.Interface;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FactoryMethodPattern
{
class Program
{
static void Main(string[] args)
{
#region First implementation
//Createor createor = new Createor();
//Screen screen = createor.ScreenFactory(Enum.ScreenModel.Desktop);
//screen.Draw();
#endregion
#region Phone example
IPhone phone = PhoneFactory.GetPhone("Iphone", "560mah");
IPhone phone1 = PhoneFactory.GetPhone("Samsung", "1000mah");
Console.WriteLine(phone);
Console.WriteLine(phone1);
#endregion
Console.Read();
}
}
}