Пример #1
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;
 }
 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;
 }
Пример #3
0
 public ClienteController(IClienteService clienteService, IMovCuentaService movCuentaService)
 {
     this.clienteService = clienteService;
     this.movCuentaService = movCuentaService;
 }
Пример #4
0
 public VehiculoController(IVehiculoService vehiculoService, IMovCuentaService movCuentaService)
 {
     this.vehiculoService = vehiculoService;
     this.movCuentaService = movCuentaService;
 }
Пример #5
0
 public EmpleadoController(IEmpleadoService empleadoService, IMovCuentaService movCuentaService)
 {
     this.empleadoService = empleadoService;
     this.movCuentaService = movCuentaService;
 }
Пример #6
0
 public CargasController(ICargaService cargaService, IMovCuentaService movCuentaService)
 {
     this.cargaService = cargaService;
     this.movCuentaService = movCuentaService;
 }
Пример #7
0
 public CuentasController(IMovCuentaService movCuentaService)
 {
     this.movCuentaService = movCuentaService;
 }
Пример #8
0
 public NavbarController(IMovCuentaService movCuentaService)
 {
     this.movCuentaService = movCuentaService;
 }