public ServiciosJsonController(IHorarioService horarioService,
     IEstacionService estacionService, IVentaService ventaService)
 {
     this.horarioService = horarioService;
     this.estacionService = estacionService;
     this.ventaService = ventaService;
 }
예제 #2
0
 public ClienteAppService(IClienteService clienteService, IHorarioService horarioService, IMensalidadesService mensalidadesService, IValoresService valoresService, ILogSistemaService logSistemaService)
 {
     _clienteService      = clienteService;
     _horarioService      = horarioService;
     _mensalidadesService = mensalidadesService;
     _valoresService      = valoresService;
     _logSistemaService   = logSistemaService;
 }
예제 #3
0
 public HorarioController(IHorarioService horarioService, IMovCuentaService movCuentaService, IEmpleadoService empleadoService, IEstacionService estacionService, IVehiculoService vehiculoService)
 {
     this.horarioService = horarioService;
     this.empleadoService = empleadoService;
     this.estacionService = estacionService;
     this.vehiculoService = vehiculoService;
     this.movCuentaService = movCuentaService;
 }
예제 #4
0
 public AgendamentoController(IAgendamentoService agendamentoService,
                              IClienteService clienteService,
                              IEstabelecimentoService estabelecimentoService,
                              IHorarioService horarioService)
 {
     _agendamentoService     = agendamentoService;
     _clienteService         = clienteService;
     _estabelecimentoService = estabelecimentoService;
     _horarioService         = horarioService;
 }
 public EncomientaController(IVentaService ventaService, IEstacionService estacionService,
     IHorarioService horarioService, IVentaAsientoService ventaAsientoService,
     ICargaService cargaService, IClienteService clienteService,
     IVehiculoService vehiculoService, IMovCuentaService movCuentaService)
 {
     this.ventaService = ventaService;
     this.estacionService = estacionService;
     this.horarioService = horarioService;
     this.ventaAsientoService = ventaAsientoService;
     this.cargaService = cargaService;
     this.clienteService = clienteService;
     this.vehiculoService = vehiculoService;
     this.movCuentaService = movCuentaService;
 }
예제 #6
0
 public HorariosController(IHorarioService horarioService, IMapper mapper)
 {
     _horarioService = horarioService;
     _mapper         = mapper;
 }
예제 #7
0
 public HorarioController(IHorarioService horarioService, IDiaSemanaService diaSemanaService)
 {
     _horarioService   = horarioService;
     _diaSemanaService = diaSemanaService;
 }
예제 #8
0
 public HorarioAppService(HorarioService horarioService) :
     base(horarioService)
 {
     _horarioService = horarioService;
 }
예제 #9
0
 public HorarioController(IHorarioService horarioService)
 {
     this.horarioService = horarioService;
 }
예제 #10
0
 public HorarioAppService(IHorarioService horarioService, IMapper mapper)
 {
     _horarioService = horarioService;
     _mapper         = mapper;
 }
예제 #11
0
 public HorarioAppService(IHorarioService horarioService, IClienteService clienteService, ILogSistemaService logSistemaService)
 {
     _horarioService    = horarioService;
     _clienteService    = clienteService;
     _logSistemaService = logSistemaService;
 }