public JTPoorman(IStockMediator newMediator) : base(newMediator)
 {
     Console.WriteLine("JTPoorman signed up with the stockexchange\n");
 }
Exemplo n.º 2
0
 public GormanSlacks(IStockMediator newMediator) : base(newMediator)
 {
     Console.WriteLine("Gorman Slacks signed up with the stockexchange\n");
 }
Exemplo n.º 3
0
 public StockColleague(IStockMediator newMediator)
 {
     mediator = newMediator;
     mediator.AddColleague(this);
 }