public Curricula() { personaAlta = new Persona(); personaModificacion = new Persona(); asignatura = new Asignatura(); nivel = new Nivel(); orientacion = new Orientacion(); }
public Curso() { listaAlumnos = new List<Alumno>(); listaAsignaturas = new List<Asignatura>(); nivel = new Nivel(); preceptor = new Preceptor(); orientacion = new Orientacion(); cicloLectivo = new CicloLectivo(); }
/// <summary> /// Obteners the orientaciones BD transaccional. /// </summary> /// <param name="configuracion">The configuracion.</param> /// <returns></returns> public List<Orientacion> obtenerOrientacionesBDTransaccional(Configuraciones configuracion) { List<Orientacion> listaOrientaciones = null; try { using (MySqlCommand command = new MySqlCommand()) { conMySQL = new MySqlConnection(configuracion.valor); command.Connection = conMySQL; command.CommandText = @"SELECT * FROM orientacion"; conMySQL.Open(); MySqlDataReader reader = command.ExecuteReader(); Orientacion orientacion; listaOrientaciones = new List<Orientacion>(); while (reader.Read()) { orientacion = new Orientacion() { idOrientacionTransaccional = (int)reader["id"], nombre = reader["nombre"].ToString(), descripcion = reader["descripcion"].ToString() }; listaOrientaciones.Add(orientacion); } command.Connection.Close(); return listaOrientaciones; } } catch (MySqlException ex) { throw new CustomizedException(String.Format("Fallo en {0} - obtenerOrientacionesBDTransaccional()", ClassName), ex, enuExceptionType.MySQLException); } catch (SqlException ex) { throw new CustomizedException(String.Format("Fallo en {0} - obtenerOrientacionesBDTransaccional()", ClassName), ex, enuExceptionType.SqlException); } catch (Exception ex) { throw new CustomizedException(String.Format("Fallo en {0} - obtenerOrientacionesBDTransaccional()", ClassName), ex, enuExceptionType.DataAccesException); } finally { //if (sqlConnectionConfig.State == ConnectionState.Open) // sqlConnectionConfig.Close(); } }
/// <summary> /// Initializes a new instance of the <see cref="AsignaturaNivel"/> class. /// </summary> public AsignaturaNivel() { asignatura = new Asignatura(); nivel = new Nivel(); orientacion = new Orientacion(); }