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

            InitTimeTable();
        }
Exemplo n.º 2
0
 public ConductoresController(IConductorService conductorSevice, IMovimientosService movimientosService)
 {
     _movimientosService = movimientosService;
     _conductorSevice    = conductorSevice;
 }
Exemplo n.º 3
0
 public ConductoresController(IConductorService conductorSevice, IMovimientosService movimientosService)
 {
     _movimientosService = movimientosService;
     _conductorSevice = conductorSevice;
 }
Exemplo n.º 4
0
 public ConductorController(IConductorService conductorService, IMapper mapper)
 {
     _conductorService = conductorService;
     _mapper           = mapper;
 }