Beispiel #1
0
 public ProyectoService(ExpoSoftwareContext context)
 {
     _context = context;
 }
Beispiel #2
0
 public RubricaController(ExpoSoftwareContext context)
 {
     _context = context;
 }
Beispiel #3
0
 public AreaController(ExpoSoftwareContext context)
 {
     _AreaService = new AreaService(context);
 }
Beispiel #4
0
 public AreaService(ExpoSoftwareContext context)
 {
     _context = context;
 }
Beispiel #5
0
 public ProyectoController(ExpoSoftwareContext context)
 {
     _ProyectoService = new ProyectoService(context);
 }
Beispiel #6
0
 public DocenteController(ExpoSoftwareContext context)
 {
     _DocenteService = new DocenteService(context);
 }
Beispiel #7
0
 public AspectoEvaluarController(ExpoSoftwareContext context)
 {
     _context = context;
 }
Beispiel #8
0
 public DocenteService(ExpoSoftwareContext context)
 {
     _context = context;
 }
Beispiel #9
0
 public EstudiantesController(ExpoSoftwareContext context)
 {
     _context = context;
 }
Beispiel #10
0
 public AsignaturaController(ExpoSoftwareContext context)
 {
     _AsignaturaService = new AsignaturaService(context);
 }
Beispiel #11
0
 public AsignaturaService(ExpoSoftwareContext context)
 {
     _context = context;
 }