public Form2(ref ProfesorTutor seleccionado) { InitializeComponent(); this.Text = "Modificar Profesor"; this.button1.Text = "Guardar"; textBoxCodigo.Text = seleccionado.Profesor.Codigo.ToString(); textBoxNombre.Text = seleccionado.Profesor.Nombre; textBoxDNI.Text = seleccionado.Profesor.DNI.ToString(); textBoxCorreo.Text = seleccionado.Profesor.Correo; textBoxTelefono.Text = seleccionado.Profesor.Telefono.ToString(); comboBoxIdioma.SelectedIndex = seleccionado.Profesor.Idioma; comboBoxDedicacion.SelectedText = seleccionado.Profesor.Regimen; // dateTimePickerInicio.Value = new DateTime(seleccionado.Profesor.Inicio); }
public void agregarProfesorTutor(Profesor profesor) { ProfesorTutor prof=new ProfesorTutor(profesor); Tutores.Add(prof); }
public static void agregarReunion(int codigoProfesor, Reunion newReunion) { ProfesorTutor profesor = buscarTutor(codigoProfesor); profesor.addReunion(newReunion); }
public void agregarProfesorTutor(Profesor profesor) { ProfesorTutor prof = new ProfesorTutor(profesor); Tutores.Add(prof); }