Beispiel #1
0
 public OpticaController(IExitService exit, IVentaService VentaService)
 {
     ///Deslogeo
     this.exit = exit;
     ///Venta
     this.VentaService = VentaService;
 }
 public ServiciosJsonController(IHorarioService horarioService,
     IEstacionService estacionService, IVentaService ventaService)
 {
     this.horarioService = horarioService;
     this.estacionService = estacionService;
     this.ventaService = ventaService;
 }
 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;
 }
 public VentaController(IVentaService ventaService, IExpedienteService expedienteService)
 {
     this.ventaService      = ventaService;
     this.expedienteService = expedienteService;
 }
Beispiel #5
0
 public VentasController(IVentaService _ventaService)
 {
     this.ventaService = _ventaService;
 }
Beispiel #6
0
 public VentaController(IVentaService ventaService)
 {
     Servicio = ventaService;
 }
 public VentaController(IVentaService venta)
 {
     this._venta = venta;
 }
Beispiel #8
0
 public VentaService(IVentaService ventaService)
 {
     _ventaService = ventaService;
 }
 public VentaController(IVentaService ventaService)
 {
     this._ventaService = ventaService;
 }
 public VentasController(IMapper mapper, IArticuloService articuloService, IVentaService ventaService)
 {
     this._mapper          = mapper;
     this._articuloService = articuloService;
     this._ventaService    = ventaService;
 }
Beispiel #11
0
 public VentaController(IVentaService venta)//inyeccion de dependecias
 {
     this._venta = venta;
 }
Beispiel #12
0
 public VentaController(IVentaService servicio)
 {
     _servicio = servicio;
 }
 public ServiciosJsonTestController(IVentaService ventaService)
 {
     this.ventaService = ventaService;
 }
Beispiel #14
0
 public VentaController(IVentaService ventaServ)
 {
     this.ventaServ = ventaServ;
 }
Beispiel #15
0
 public VentaController(VentaRealContext dbContext, IVentaService venta)
 {
     _dbContext    = dbContext;
     _ventaService = venta;
 }