Exemple #1
0
 public AspiranteController(ProyectjoobContext context)
 {
     aspiranteService = new AspiranteService(context);
 }
 public DatoAcademicoController(ProyectjoobContext context)
 {
     datoAcademicoService = new DatoAcademicoService(context);
     hojaDeVidaService    = new HojaDeVidaService(context);
 }
Exemple #3
0
//----------------------------------------------------------------------------------------------------------------
        public DatoAcademicoService(ProyectjoobContext context)
        {
            _context = context;
        }
Exemple #4
0
//----------------------------------------------------------------------------------------------------------------
        public HojaDeVidaService(ProyectjoobContext context)
        {
            _context = context;
        }
Exemple #5
0
//----------------------------------------------------------------------------------------------------------------
        public AspiranteService(ProyectjoobContext context)
        {
            _context = context;
        }
        public DatoLaboralController(ProyectjoobContext context)
        {
            datoLaboralService = new DatoLaboralService(context);

            hojaDeVidaService = new HojaDeVidaService(context);
        }
Exemple #7
0
 public HojaDeVidaController(ProyectjoobContext context)
 {
     hojaDeVidaService = new HojaDeVidaService(context);
     aspiranteService  = new AspiranteService(context);
 }
//----------------------------------------------------------------------------------------------------------------
        public DatoLaboralService(ProyectjoobContext context)
        {
            _context = context;
        }