public void ProgramToNewTV(TV implementor)
 {
     _implementor = implementor;
 }
Ejemplo n.º 2
0
 public RemoteControl(TV implementor)
 {
     _implementor = implementor;
 }
 public ConcreteRemote(TV implementor)
     : base(implementor)
 {
 }