Пример #1
0
 private void btnAceptar_Click(object sender, EventArgs e)
 {
     if (Validar())
     {
         if (Tipo == "Curso")
         {
             Reporte reporte = new Reporte();
             reporte.IDCurso = listcursos[cmbIDCurso.SelectedIndex].ID;
             reporte.IDDocente = listprofesores[cmbIDProfesor.SelectedIndex].ID;
             reporte.IDPlan = listplanes[cmbIDPlan.SelectedIndex].ID;
             reporte.IDEspecialidad = listplanes[cmbIDPlan.SelectedIndex].IDEspecialidad;
             reporte.IDComision = listcursos[cmbIDCurso.SelectedIndex].IDComision;
             reporte.IDMateria = listcursos[cmbIDCurso.SelectedIndex].IDMateria;
             ReporteCursos rep = new ReporteCursos(reporte);
             rep.Show();
         }
         else
         {
             Reporte reporte = new Reporte();
             reporte.IDPlan = listplanes[cmbIDPlan.SelectedIndex].ID;
             reporte.IDEspecialidad = listplanes[cmbIDPlan.SelectedIndex].IDEspecialidad;
             ReportePlanes rep = new ReportePlanes(reporte);
             rep.Show();
         }
     }
 }
Пример #2
0
 public ReportePlanes(Reporte rep)
 {
     Reporte = rep;
     InitializeComponent();
 }
Пример #3
0
 public ReporteCursos(Reporte rep)
 {
     Reporte = rep;
     InitializeComponent();
 }