public void SetState(TrafficLightState state)
 {
     _currentState = state;
 }
 public TrafficLight()
 {
     _currentState = new RedState();
 }