Пример #1
0
        public List <Estados> ConsultarEstados()
        {
            Obtenido = null;
            Estados Estado;

            LEstados  = new List <Estados>();
            Sentencia = "SELECT * FROM ESTADOS";

            using (var Comando = new OracleCommand(Sentencia, Conexion))
            {
                Comando.CommandType = System.Data.CommandType.Text;
                Obtenido            = Comando.ExecuteReader();
            }

            while (Obtenido.Read())
            {
                //id nombre contenido
                Estado = new Estados(Obtenido["ESTADO_ID"].ToString(), Obtenido["NOMBRE"].ToString());
                LEstados.Add(Estado);
            }

            return(LEstados);
        }
Пример #2
0
 /// <summary>
 /// Deprecated Method for adding a new object to the Estados EntitySet. Consider using the .Add method of the associated ObjectSet&lt;T&gt; property instead.
 /// </summary>
 public void AddToEstados(Estados estados)
 {
     base.AddObject("Estados", estados);
 }
Пример #3
0
 /// <summary>
 /// Create a new Estados object.
 /// </summary>
 /// <param name="estado_Id">Initial value of the Estado_Id property.</param>
 /// <param name="nombre">Initial value of the Nombre property.</param>
 public static Estados CreateEstados(global::System.Int32 estado_Id, global::System.String nombre)
 {
     Estados estados = new Estados();
     estados.Estado_Id = estado_Id;
     estados.Nombre = nombre;
     return estados;
 }