Exemplo n.º 1
0
 public Sender(EventAggregator ag)
 {
     this.ag = ag;
 }
Exemplo n.º 2
0
 public Receiver(EventAggregator ag)
 {
     this.ag = ag;
     ag.Subscribe <SimpleEvent>(this);
 }