private void _lstUltimosPeriodoVigenteCarrera(SitioWebOasis.WSSeguridad.dtstUsuario dsUsuario)
        {
            try{
                if (dsUsuario.UltimosPeriodos.Rows.Count > 0)
                {
                    foreach (DataRow item in dsUsuario.UltimosPeriodos)
                    {
                        Carrera objCarreras = new Carrera(item["strCodCarrera"].ToString(),
                                                          "",
                                                          "",
                                                          "",
                                                          "",
                                                          item["strCodPeriodo"].ToString(),
                                                          item["strDescripcionPeriodo"].ToString());

                        lstCarrerasUP.Add(objCarreras);
                    }
                }
            }catch (Exception ex) {
                GestorErrores.Errores err = new GestorErrores.Errores();
                err.SetError(ex, "CarreraEnPeriodoVigente");
            }
        }
        public Carrera getUltimoPeriodoVigenteCarrera(string strCodCarrera)
        {
            Carrera dtaCarreraPeriodoVigente = null;

            try{
                if (this.lstCarrerasUP.Count > 0)
                {
                    foreach (Carrera item in this.lstCarrerasUP)
                    {
                        if (item.Codigo == strCodCarrera)
                        {
                            dtaCarreraPeriodoVigente = item;
                            break;
                        }
                    }
                }
            }catch (Exception ex) {
                dtaCarreraPeriodoVigente = null;
                Errores err = new Errores();
                err.SetError(ex, "getCarreraPeriodoVigente");
            }

            return(dtaCarreraPeriodoVigente);
        }
 public RolCarrera(string ID, string strNombre, Carrera carrera) : base(ID, strNombre)
 {
     this._carrera = carrera;
 }