Esempio n. 1
0
 public Inicio(IClienteService cs, IPresupuestoService ps, IVehiculoService vs)
 {
     InitializeComponent();
     cService = cs;
     pService = ps;
     vService = vs;
 }
 public MainWindow(ClienteService cs, VehiculoService vs, PresupuestoService ps)
 {
     this.cService = cs;
     this.vService = vs;
     this.pService = ps;
     InitializeComponent();
 }
Esempio n. 3
0
 public VehiculosController(IVehiculoService vehiculoService, IMapper mapper, IUriService uriService, IHelperImage helperImage, IWebHostEnvironment env)
 {
     _helperImage     = helperImage;
     _mapper          = mapper;
     _uriService      = uriService;
     _vehiculoService = vehiculoService;
     directory        = env.ContentRootPath;
 }
Esempio n. 4
0
 public PerfilesController(ErrorResponseFactory errorResponseFactory, IVehiculoService vehiculoService,
                           UsuarioVehiculoValidator usuarioVehiculoValidator, VehiculoMapper vehiculoMapper)
 {
     this.errorResponseFactory     = errorResponseFactory;
     this.vehiculoService          = vehiculoService;
     this.usuarioVehiculoValidator = usuarioVehiculoValidator;
     this.vehiculoMapper           = vehiculoMapper;
 }
 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;
 }
Esempio n. 6
0
 public VehiculosController(IVehiculoService vehiculoService,
                            ParametrosBusquedaVehiculoValidator parametrosValidator, ErrorResponseFactory errorResponseFactory,
                            VehiculoMapper vehiculoMapper)
 {
     this.vehiculoService      = vehiculoService;
     this.parametrosValidator  = parametrosValidator;
     this.errorResponseFactory = errorResponseFactory;
     this.vehiculoMapper       = vehiculoMapper;
 }
Esempio n. 7
0
 public OperacionService(HigoContext higoContext, INotificacionService notificacionService,
                         IVehiculoService vehiculoService, IEstadoService estadoService, VehiculoUtils vehiculoUtils,
                         CambioEstadoOperacionValidator cambioEstadoValidator)
 {
     this.higoContext           = higoContext;
     this.notificacionService   = notificacionService;
     this.vehiculoService       = vehiculoService;
     this.estadoService         = estadoService;
     this.vehiculoUtils         = vehiculoUtils;
     this.cambioEstadoValidator = cambioEstadoValidator;
 }
 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;
 }
Esempio n. 9
0
 public Paso2Model(IConfiguration config, IVehiculoService vehiculoService)
 {
     this.config     = config;
     VehiculoService = vehiculoService;
 }
 public RegistroVehiculosModel(IConfiguration config, IVehiculoService vehiculoService)
 {
     this.config     = config;
     VehiculoService = vehiculoService;
 }
 public VehiculoController(IVehiculoService vehiculoService, IMovCuentaService movCuentaService)
 {
     this.vehiculoService = vehiculoService;
     this.movCuentaService = movCuentaService;
 }
 public DetalleVehiculoModel(IVehiculoService service)
 {
     this.service = service;
 }
Esempio n. 13
0
 public TallerService(IVehiculoService vehiculoService)
 {
     _vehiculoService = vehiculoService;
 }
Esempio n. 14
0
 public EditarModel(IVehiculoService service, IHtmlHelper helper)
 {
     this.service = service;
     this.helper  = helper;
 }
Esempio n. 15
0
 public VigilanteService(ITiqueteService tiqueteService, IVehiculoService vehiculoService, IPicoPlacaService picoPlacaService)
 {
     _tiqueteService   = tiqueteService;
     _vehiculoService  = vehiculoService;
     _picoPlacaService = picoPlacaService;
 }
 public VehiculosController(IVehiculoService _service, IMapper _mapper) :
     base(_service, _mapper, "Modelo,TipoVehiculo,TipoCombustible,Rentas.Vehiculo,Rentas.Empleado,Rentas.Cliente")
 {
 }
 public ValuesController(IVehiculoService vehiculoService, ITallerService tallerService)
 {
     _vehiculoService = vehiculoService;
     _tallerService   = tallerService;
 }
 public BuscarVehiculoModel(IConfiguration config, IVehiculoService vehiculoService)
 {
     this.config     = config;
     VehiculoService = vehiculoService;
 }
Esempio n. 19
0
 public VehiculoController(IMapper mapper, IVehiculoService vehiculoService)
 {
     _mapper          = mapper;
     _vehiculoService = vehiculoService;
 }
 public VehiculoController(IVehiculoService VehiculoService)
 {
     _VehiculoService = VehiculoService;
 }
 public VehiculoController(IVehiculoService vehiculoService)
 {
     _vehiculoService = vehiculoService;
 }
Esempio n. 22
0
 public EliminarModel(IVehiculoService service)
 {
     this.service = service;
 }