public TransportationTimeTableService(IBusSystemRepository busSystemRepo, IConductorService conductorService)
        {
            _conductorService = conductorService;
            _busSystemRepo    = busSystemRepo;

            InitTimeTable();
        }
        public void ConductorService_HappyPath()
        {
            IBusSystemRepository repo = Substitute.For <IBusSystemRepository>();

            IConductorService condctrServ = new ConductorService();
        }