public Alumno(int idAlumno, Perfil objPerfil, Escuela objEscuela) { this.idAlumno = idAlumno; this.objPerfil = objPerfil; this.objEscuela = objEscuela; }
public PlanDeEstudios(int idPlanDeEstudios, Escuela objEscuela, string nombre) { this.idPlanDeEstudios = idPlanDeEstudios; this.objEscuela = objEscuela; this.nombre = nombre; }