public AsignacionDocenteController(IAsignacionDocenteService iAsignacionDocenteService,
                                    IComponenteEducativoService iComponenteEducativoService,
                                    IPersonaService iPersonaService,
                                    IApplication application)
 {
     _iAsignacionDocenteService   = iAsignacionDocenteService;
     _iComponenteEducativoService = iComponenteEducativoService;
     _iPersonaService             = iPersonaService;
     _application = application;
 }
Exemple #2
0
 public MatriculaController(IMatriculaService iMatriculaService,
                            IComponenteEducativoService iComponenteEducativoService,
                            IPersonaService iPersonaService,
                            IApplication application)
 {
     _iMatriculaService           = iMatriculaService;
     _iComponenteEducativoService = iComponenteEducativoService;
     _iPersonaService             = iPersonaService;
     _application = application;
 }
 public ComponenteEducativoController(IComponenteEducativoService iComponenteEducativoService,
                             IApplication application)
 {
     _iComponenteEducativoService = iComponenteEducativoService;
     _application = application;
 }