コード例 #1
0
        public TransportationTimeTableService(IBusSystemRepository busSystemRepo, IConductorService conductorService)
        {
            _conductorService = conductorService;
            _busSystemRepo    = busSystemRepo;

            InitTimeTable();
        }
コード例 #2
0
 public ConductoresController(IConductorService conductorSevice, IMovimientosService movimientosService)
 {
     _movimientosService = movimientosService;
     _conductorSevice    = conductorSevice;
 }
コード例 #3
0
 public ConductoresController(IConductorService conductorSevice, IMovimientosService movimientosService)
 {
     _movimientosService = movimientosService;
     _conductorSevice = conductorSevice;
 }
コード例 #4
0
 public ConductorController(IConductorService conductorService, IMapper mapper)
 {
     _conductorService = conductorService;
     _mapper           = mapper;
 }