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