예제 #1
0
 public object obtenerIdEstado(Estados e)
 {
     Command.CommandText = "select idestado from estados where nombre = @estado";
     Command.Parameters.Clear();
     Command.Parameters.AddWithValue("estado", e.nombre);
     object dato = Select(Command);
     return dato;
 }
예제 #2
0
 public List<Estados> obtenerEstados()
 {
     List<Estados> lstEstados = new List<Estados>();
     DataTable dtEstados = new DataTable();
     Command.CommandText = "select idestado, nombre from estados";
     dtEstados = SelectData(Command);
     for (int i = 0; i < dtEstados.Rows.Count; i++)
     {
         Estados edo = new Estados();
         edo.idestado = int.Parse(dtEstados.Rows[i]["idestado"].ToString());
         edo.nombre = dtEstados.Rows[i]["nombre"].ToString();
         lstEstados.Add(edo);
     }
     return lstEstados;
 }