public Alumno(string name, string lname, int doc, int phone, string direcc, int id, Curso curse) { this.nombre = name; this.apellido = lname; this.dni = doc; this.tel = phone; this.direc = direcc; this.id = id; this.curso = curse; }
public Asignatura(string asig, List <string> asigs, List <Profesor> profes, Dictionary <Alumno, Calificacion> califs, Curso curs) { this.asign = asig; this.correlativas = asigs; this.profesores = profes; this.calificaciones = califs; this.curso = curs; }