예제 #1
0
 public VehiculoService(HigoContext higoContext, OperacionUtils operacionUtils, VehiculoUtils vehiculoUtils,
                        IEstadoService estadoService, IUsuarioService usuarioService)
 {
     this.higoContext    = higoContext;
     this.operacionUtils = operacionUtils;
     this.vehiculoUtils  = vehiculoUtils;
     this.estadoService  = estadoService;
     this.usuarioService = usuarioService;
 }
예제 #2
0
 public VehiculoMapper(UsuarioMapper usuarioMapper, VehiculoUtils vehiculoUtils,
                       IEstadoService estadoService, ITipoService tipoService, IOpcionesService opcionesService)
 {
     this.usuarioMapper   = usuarioMapper;
     this.vehiculoUtils   = vehiculoUtils;
     this.estadoService   = estadoService;
     this.tipoService     = tipoService;
     this.opcionesService = opcionesService;
 }
예제 #3
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;
 }