Exemplo n.º 1
0
 // Constructor
 public ConcreteCommand(Receiver receiver) :
     base(receiver)
 {
 }
Exemplo n.º 2
0
 // Constructor
 public Command(Receiver receiver)
 {
     this.receiver = receiver;
 }