public void ProgramToNewTV(TV implementor)
 {
     _implementor = implementor;
 }
Пример #2
0
 public RemoteControl(TV implementor)
 {
     _implementor = implementor;
 }
 public ConcreteRemote(TV implementor)
     : base(implementor)
 {
 }