Ejemplo n.º 1
0
 public Amonestaciones(Alumno alu, Alumnos parentForm)
 {
     InitializeComponent();
     this.servicioSeguridad = new ServicioSeguridad();
     this.servicioAlumnos   = new ServicioAlumnos();
     this.alumno            = alu;
 }
Ejemplo n.º 2
0
        public Inasistencias(Alumno alu, Alumnos parentForm)
        {
            InitializeComponent();
            this.servicioSeguridad = new ServicioSeguridad();
            this.servicioAlumnos   = new ServicioAlumnos();

            this.alumno = alu;
        }
 public AltaModificacionAlumno(Alumno alumno, Alumnos parentform)
 {
     InitializeComponent();
     this.servicioAlumnos        = new ServicioAlumnos();
     this.servicioAdministracion = new ServicioAdministracion();
     this.servicioSeguridad      = new ServicioSeguridad();
     this.parentForm             = parentform;
     if (alumno != null)
     {
         this.currentAlumno = alumno;
     }
     this.nombretx.KeyPress   += validarLetrasKeyPress;
     this.apellidotx.KeyPress += validarLetrasKeyPress;
     this.dnitx.KeyPress      += Dnitx_KeyPress;
     this.domicilotx.KeyPress += Domicilotx_KeyPress;
 }