Exemplo n.º 1
0
        public void Init(ITrafficLights lights)
        {
            if (IsRunning)
            {
                throw new InvalidOperationException("Init called while Engine Running");
            }

            _lights         = lights;
            IsStopRequested = false;

            IsInitialized = true;
        }
Exemplo n.º 2
0
 public TrafficLightController(ITrafficLights lights, ITrafficLightTimer timer)
 {
     _lights = lights;
     _timer  = timer;
 }