예제 #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)
 {
 }