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