-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
39 lines (33 loc) · 830 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
35
36
37
38
39
namespace DesignPatterns.State;
public interface IEmotion
{
void SayHello();
void SayGoodbye();
}
public class Happy : IEmotion
{
public void SayHello() => Console.WriteLine("Hello, friend!");
public void SayGoodbye() => Console.WriteLine("Goodbye, friend!");
}
public class Sad : IEmotion
{
public void SayHello() => Console.WriteLine("Hello");
public void SayGoodbye() => Console.WriteLine("Bye.");
}
public class Human(IEmotion emotion) : IEmotion
{
public void SayHello()=> emotion.SayHello();
public void SayGoodbye()=> emotion.SayGoodbye();
}
class App
{
public static void Main()
{
var me = new Human(new Happy());
me.SayHello();
me.SayGoodbye();
var smith = new Human(new Sad());
smith.SayHello();
smith.SayGoodbye();
}
}