コード例 #1
0
 public ControlService(HigoContext higoContext, ControlMapper controlMapper, IOperacionService operacionService,
                       ControlResponseBuilder controlResponseBuilder, ControlUtils controlUtils)
 {
     this.higoContext            = higoContext;
     this.controlMapper          = controlMapper;
     this.operacionService       = operacionService;
     this.controlResponseBuilder = controlResponseBuilder;
     this.controlUtils           = controlUtils;
 }
コード例 #2
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;
 }
コード例 #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;
 }
コード例 #4
0
 public UsuariosController(HigoContext ctx, IUsuarioService usuarioService,
                           UsuarioRequestValidator parametrosValidator, IOperacionService operacionService,
                           OperacionesClasificadasDTOBuilder operacionesClasificadasDtoBuilder,
                           ErrorResponseFactory errorResponseFactory)
 {
     this.ctx                 = ctx;
     this.usuarioService      = usuarioService;
     this.parametrosValidator = parametrosValidator;
     this.operacionService    = operacionService;
     this.operacionesClasificadasDtoBuilder = operacionesClasificadasDtoBuilder;
     this.errorResponseFactory = errorResponseFactory;
 }
コード例 #5
0
 public UsuarioService(HigoContext higoContext, UsuarioRequestValidator validator)
 {
     this.higoContext = higoContext;
     this.validator   = validator;
 }
コード例 #6
0
 public EstadoService(HigoContext higoContext)
 {
     this.higoContext = higoContext;
 }
コード例 #7
0
 public UsuarioVehiculoValidator(HigoContext higoContext)
 {
     this.higoContext = higoContext;
 }
コード例 #8
0
 public OpcionesService(HigoContext higoContext)
 {
     this.higoContext = higoContext;
 }
コード例 #9
0
 public NotificacionService(HigoContext higoContext)
 {
     this.higoContext = higoContext;
 }
コード例 #10
0
 public TipoService(HigoContext higoContext)
 {
     this.higoContext = higoContext;
 }
コード例 #11
0
 public MarcaService(HigoContext higoContext)
 {
     this.higoContext = higoContext;
 }
コード例 #12
0
 public WorkflowService(HigoContext higoContext)
 {
     this.higoContext = higoContext;
 }
コード例 #13
0
 public LoginController(HigoContext context, LoginResponseBuilder loginResponseBuilder)
 {
     this.context = context;
     this.loginResponseBuilder = loginResponseBuilder;
 }