public Amonestaciones(Alumno alu, Alumnos parentForm) { InitializeComponent(); this.servicioSeguridad = new ServicioSeguridad(); this.servicioAlumnos = new ServicioAlumnos(); this.alumno = alu; }
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; }