private void InscripcionMateria_Load(object sender, EventArgs e)
        {
            this.lblNombreAlumno.Text = this.AlumnoActual.Nombre + " " + this.AlumnoActual.Apellido + " (" + this.AlumnoActual.Legajo + ")";

            PlanLogic pl = new PlanLogic();
            Plan planActual = pl.GetOne(AlumnoActual.IdPlan);
            this.lblNombrePlan.Text = planActual.DescCompleta;

            CursoLogic cl = new CursoLogic();
            this.cmbMateria.DataSource = cl.GetAllCursosAnio(AlumnoActual.IdPlan);
            this.cmbMateria.DisplayMember = "MateriaComision";
            this.cmbMateria.ValueMember = "ID";

            this.cmbCondicion.DataSource = Enum.GetValues(typeof(Condiciones));

            if(this.Modo.Equals(ModoForm.Alta)){
                this.cmbCondicion.SelectedIndex = 0;
                this.cmbCondicion.Enabled = false;
                this.txtNota.Enabled = false;
            }
            else if (this.Modo.Equals(ModoForm.Modificacion))
            {
                this.cmbMateria.Enabled = false;
                MapearDeDatos();
            }
        }