Ejemplo n.º 1
0
 public Principal()
 {
     InitializeComponent();
     this.falta = new Controladores.Falta();
     this.reportes = new Controladores.Reportes();
     this.faltasEstudiante = new Controladores.FaltasEstudiantes();
 }
Ejemplo n.º 2
0
 public Estudiante(Dictionary<string, string> datos, Dictionary<string, string> cursos)
 {
     InitializeComponent();
     this.datos = datos;
     this.cursos = cursos;
     this.faltasEstudiante = new Controladores.FaltasEstudiantes();
     this.totalPuntos = 0;
 }
Ejemplo n.º 3
0
 public Registrar(string idEstudiante, string idCurso)
 {
     InitializeComponent();
     this.faltas = new Controladores.Falta();
     this.faltaEstudiante = new Controladores.FaltasEstudiantes();
     this.idEstudiante = idEstudiante;
     this.idCurso = idCurso;
 }
Ejemplo n.º 4
0
 public Principal(Dictionary<string, string> carreras)
 {
     InitializeComponent();
     this.carreras = carreras;
     this.cursos = new Controladores.Curso();
     this.estudiantes = new Controladores.Estudiante();
     this.faltas = new Controladores.FaltasEstudiantes();
 }
Ejemplo n.º 5
0
 public Faltas(Dictionary<string, string> detalleEstudiante)
 {
     InitializeComponent();
     this.detalleEstudiante = detalleEstudiante;
     this.faltas = new Controladores.Falta();
     this.faltasEstudiante = new Controladores.FaltasEstudiantes();
     this.totalPuntos = 0;
 }
Ejemplo n.º 6
0
 public Principal()
 {
     InitializeComponent();
     this.datos = new Dictionary<string, object>();
     this.controlador = new Controladores.Encargado();
     this.carrera = new Controladores.Carrera();
     this.curso = new Controladores.Curso();
     this.estudiante = new Controladores.Estudiante();
     this.oficial = new Controladores.EstudianteOficial();
     this.falta = new Controladores.Falta();
     this.cursoEstudiante = new Controladores.CursoEstudiantes();
     this.faltasEstudiante = new Controladores.FaltasEstudiantes();
     this.reportes = new Controladores.Reportes();
 }