forked from EdisonTalk/DesignPattern.Samples.CSharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
54 lines (47 loc) · 1.78 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EDC.DesignPattern.ChainOfResponsibility
{
public class Program
{
public static void Main(string[] args)
{
// 创建职责链
Approver andy = new Director("Andy");
Approver jacky = new Manager("Jacky");
Approver ashin = new VicePresident("Ashin");
Approver anya = new President("Anya");
Approver meeting = new Congress("Congress");
andy.SetSuccessor(jacky);
jacky.SetSuccessor(ashin);
ashin.SetSuccessor(anya);
anya.SetSuccessor(meeting);
// 构造采购请求单并发送审批请求
PurchaseRequest request1 = new PurchaseRequest(45000.00,
"MANULIFE201706001",
"购买PC和显示器");
andy.ProcessRequest(request1);
PurchaseRequest request2 = new PurchaseRequest(60000.00,
"MANULIFE201706002",
"2017开发团队活动");
andy.ProcessRequest(request2);
PurchaseRequest request3 = new PurchaseRequest(160000.00,
"MANULIFE201706003",
"2017公司年度旅游");
andy.ProcessRequest(request3);
PurchaseRequest request4 = new PurchaseRequest(800000.00,
"MANULIFE201706004",
"租用新临时办公楼");
andy.ProcessRequest(request4);
Console.ReadKey();
}
public static void InitializeDemo(PurchaseRequest request)
{
PurchaseRequestHandler requestHandler = new PurchaseRequestHandler();
requestHandler.SendRequestToApprover(request);
}
}
}