Example #1
0
 public InformacionTrabajoService(
     IODSQueries odsQueries,
     IUserService userService,
     IAsyncRepository <PuestoSolicitado> puestoSolicitadoRepository,
     IAsyncRepository <PuestoTabulador> puestoTabuladoRepository,
     IAsyncRepository <TabuladorSalario> tabuladorRepository)
 {
     this.odsQueries  = odsQueries;
     this.userService = userService;
     this.puestoSolicitadoRepository = puestoSolicitadoRepository;
     this.puestoTabuladoRepository   = puestoTabuladoRepository;
     this.tabuladorRepository        = tabuladorRepository;
 }
 public CatalogService(
     IAsyncRepository <Empresa> empresaRepository,
     IAsyncRepository <TipoPlaza> tipoPlazaRepository,
     IAsyncRepository <Localidad> localidadRepository,
     IAsyncRepository <MotivoIngreso> motivoIngresoRepository,
     IAsyncRepository <PuestoSolicitado> puestoSolicitadoRepository,
     IGeneralService <PuestoSolicitado> puestoSolicitadoService,
     IAsyncRepository <EstadoCivil> estadoCivilRepository,
     IAsyncRepository <Salario> salarioRepository,
     IAsyncRepository <ReferenciaVacante> referenciaVacanteRepository,
     IODSQueries odsQueries)
 {
     this.empresaRepository           = empresaRepository;
     this.tipoPlazaRepository         = tipoPlazaRepository;
     this.localidadRepository         = localidadRepository;
     this.motivoIngresoRepository     = motivoIngresoRepository;
     this.puestoSolicitadoRepository  = puestoSolicitadoRepository;
     this.puestoSolicitadoService     = puestoSolicitadoService;
     this.estadoCivilRepository       = estadoCivilRepository;
     this.salarioRepository           = salarioRepository;
     this.referenciaVacanteRepository = referenciaVacanteRepository;
     this.odsQueries = odsQueries;
 }