-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathProgram.cs
42 lines (35 loc) · 1.16 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
using CoRDesignPatternApplication.Abstract;
using CoRDesignPatternApplication.Concrete;
using CoRDesignPatternApplication.Enum;
using CoRDesignPatternApplication.Model;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CoRDesignPatternApplication
{
class Program
{
static void Main(string[] args)
{
OrderHandler employee = new EmployeeHandler();
OrderHandler manager = new ManagerHandler();
OrderHandler executive = new ExecutiveHandler();
employee.SetOrderHandler(manager);
manager.SetOrderHandler(executive);
List<OrderBill> orderBills = new List<OrderBill>()
{
new OrderBill{Name="Pudding" ,Price=50},
new OrderBill{Name="Fish" ,Price=550},
new OrderBill{Name="Beef" ,Price=5550},
new OrderBill{Name="BeefXL" ,Price=555990},
};
foreach (OrderBill item in orderBills)
{
employee.NextProcess(item);
}
Console.Read();
}
}
}