Ejemplo n.º 1
0
 public void SetYellow()
 {
     this.State = LightState.Yellow;
 }
Ejemplo n.º 2
0
 public void SetRed()
 {
     this.State = LightState.Red;
 }
Ejemplo n.º 3
0
 public void SetGreen()
 {
     this.State = LightState.Green;
 }
Ejemplo n.º 4
0
 public Light(LightState state)
 {
     this.State = state;
 }
Ejemplo n.º 5
0
 public Light()
 {
     lightState = new LightOn();
 }
Ejemplo n.º 6
0
 public AbstratcLight(LightState state)
 {
     this.State = state;
 }