FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
DesignPatterns/FactoryMethodPattern/Program.cs at master · kadir-code/DesignPatterns · GitHub
kadir-code
/
DesignPatterns
Public
Notifications
You must be signed in to change notification settings
Fork
2
Star
14
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
DesignPatterns
/
FactoryMethodPattern
/
Program.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
34 lines (30 loc) · 986 Bytes
Breadcrumbs
DesignPatterns
/
FactoryMethodPattern
/
Program.cs
Copy path
File metadata and controls
34 lines (30 loc) · 986 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
(
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL