public FlipDownCommand(Light light)
 {
     _light = light;
 }
Example #2
0
 public FlipUpCommand(Light light)
 {
     _light = light;
 }
Example #3
0
 public LightOnCommand(Light light)
 {
     _light = light;
 }