示例#1
0
 /// <summary>
 /// The 'ConcreteColleague' class
 /// </summary>
 public Waiter(string name, IKitchenMediator mediator)
     : base(name, mediator)
 {
 }
示例#2
0
 public Employee(string name, IKitchenMediator mediator)
 {
     this.Name     = name;
     this.Mediator = mediator;
 }
示例#3
0
 /// <summary>
 /// The 'ConcreteColleague' class
 /// </summary>
 public Cook(string name, IKitchenMediator mediator)
     : base(name, mediator)
 {
 }