Exemplo n.º 1
0
 public Registrar(Dictionary<string, string> carreras, string operacion, Dictionary<string, string> estudiante)
 {
     InitializeComponent();
     this.controller = new Controladores.Estudiante();
     this.usuario = new Controladores.Encargado();
     this.carreras = carreras;
     this.operacion = operacion;
     this.estudiante = estudiante != null ? new Modelos.Estudiante(estudiante["ID"], estudiante["ci"], estudiante["nombre"],
         estudiante["apellidoPaterno"], estudiante["apellidoMaterno"], estudiante["codigo"], estudiante["IDCarrera"],
         estudiante["telefono"], estudiante["direccion"]) : null;
 }
Exemplo n.º 2
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();
 }
Exemplo n.º 3
0
 public RegistrarCuenta(Dictionary<string, String> datos)
 {
     InitializeComponent();
     this.controller = new Controladores.Encargado();
     this.datos = datos;
 }
Exemplo n.º 4
0
 public Cuentas(DataTable cuentas)
 {
     InitializeComponent();
     this.controller = new Controladores.Encargado();
     this.cuentas = cuentas;
 }
Exemplo n.º 5
0
 public CambiarPassword()
 {
     InitializeComponent();
     this.controller = new Controladores.Encargado();
 }