public string agregarReunion(Alumno alumno, Profesor profesor, string fecha, string tema, string sugerencia) { Reunion reunion = new Reunion(alumno, profesor, fecha, tema, sugerencia); Alumno al = buscarAlumno(alumno.Codigo); ProfesorTutor prof = buscarTutor(profesor.Codigo); ReunionRepository.insertReunion(fecha, tema,sugerencia,alumno.Codigo,profesor.Codigo); al.ListaReuniones.Add(reunion); prof.ListaReunion.Add(reunion); return "Reunión Agregada"; }