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