Exemplo n.º 1
0
 public void SetState(TrafficLightState state)
 {
     _currentState = state;
 }
Exemplo n.º 2
0
 public TrafficLight()
 {
     _currentState = new RedState();
 }