/// <summary>
        /// Create new Service for each of the stations.
        /// </summary>
        /// <returns>True if any Station was added.</returns>
        private bool BuildStationServiceForAllStations(IEnumerable <Station> stations)
        {
            bool response = false;

            foreach (Station station in stations)
            {
                response = true;
                int waitingTimeMS = randomDataGeneratorService.CreateRandomNumber(
                    Constants.MINIMAL_STATION_DELAY,
                    Constants.MAXIMAL_STATION_DELAY);
                StationService stationService = new StationService(station, waitingTimeMS, loggerFactory);
                stationServices.Add(stationService);
            }
            return(response);
        }