Ejemplo n.º 1
0
 public KardexMap(ITrasladoService trService, IRequisicionService reqService, ICompraService compraService, IKardexService service, IAjusteService ajusteService)
 {
     this.service       = service;
     this.ajusteService = ajusteService;
     this.compraService = compraService;
     this.reqService    = reqService;
     this.trService     = trService;
 }
 public RequisicionController(ITomaService tomaService, IKardexMap kardexMap, IDepartamentoService depaService, IRequisicionService service, IRequisicionMap map)
 {
     this.service     = service;
     this.map         = map;
     this.depaService = depaService;
     this.kardexMap   = kardexMap;
     this.tomaService = tomaService;
 }
Ejemplo n.º 3
0
 public FrmRequisicion()
 {
     InitializeComponent();
     IApplicationContext ctx = ContextRegistry.GetContext();
     RequisicionService = ctx["requisicionService"] as IRequisicionService;
     EnlaceDatos();
     InicializarListas();
 }
Ejemplo n.º 4
0
 public FrmSelectYearFolio()
 {
     InitializeComponent();
     IApplicationContext ctx = ContextRegistry.GetContext();
     EntradaService = ctx["entradaService"] as IEntradaService;
     SalidaService = ctx["salidaService"] as ISalidaService;
     RequisicionService = ctx["requisicionService"] as IRequisicionService;
     InicializarListas();
 }
Ejemplo n.º 5
0
 public AutorizacionController(
     IUserService userService,
     IUserResolverService userResolverService,
     IRequisicionService requisicionService,
     IAutorizacionService autorizacionService)
 {
     this.userService         = userService;
     this.userResolverService = userResolverService;
     this.requisicionService  = requisicionService;
     this.autorizacionService = autorizacionService;
 }
 public ComplementoExpedienteController(
     IUserService userService,
     IUserResolverService userResolverService,
     IAsyncRepository <Configuracion> configuracionRepository,
     IRequisicionService requisicionService,
     ICandidatoService candidatoService,
     IMapper mapper)
 {
     this.userService             = userService;
     this.userResolverService     = userResolverService;
     this.configuracionRepository = configuracionRepository;
     this.requisicionService      = requisicionService;
     this.candidatoService        = candidatoService;
     this.mapper = mapper;
 }
 public CandidatoController(
     UserManager <CandidatoUser> userManager,
     IUserResolverService userResolverService,
     IMapper mapper,
     IGeneralService <Candidato> service,
     IAsyncRepository <Candidato> candidatoRepository,
     ICandidatoService candidatoService,
     IGlobalConfiguration <Configuracion> configuracion,
     IRequisicionService requisicionService,
     INotificarService notificarService)
     : base(userResolverService, mapper, service)
 {
     this.userManager         = userManager;
     this.mapper              = mapper;
     this.candidatoRepository = candidatoRepository;
     this.candidatoService    = candidatoService;
     this.configuracion       = configuracion;
     this.notificarService    = notificarService;
     this.requisicionService  = requisicionService;
 }
Ejemplo n.º 8
0
 public EntrevistaService(
     IAsyncRepository <Entrevista> entrevistaAsyncRepository,
     IAsyncRepository <Competencia> competenciaRepository,
     IRepository <Entrevista> entrevistaRepository,
     IAsyncRepository <TernaCandidato> ternaCandidatoRepository,
     IPlantillaEntrevistaService plantillaEntrevistaService,
     INotificarService notificarService,
     IGlobalConfiguration <Configuracion> configuration,
     IUserService userService,
     IRequisicionService requisicionService)
     : base(entrevistaAsyncRepository, entrevistaRepository)
 {
     this.entrevistaRepository       = entrevistaAsyncRepository;
     this.competenciaRepository      = competenciaRepository;
     this.ternaCandidatoRepository   = ternaCandidatoRepository;
     this.requisicionService         = requisicionService;
     this.plantillaEntrevistaService = plantillaEntrevistaService;
     this.notificarService           = notificarService;
     this.configuration = configuration;
     this.userService   = userService;
 }
Ejemplo n.º 9
0
 public RequisicionMap(IRequisicionService service)
 {
     this.service = service;
 }