public static int getProxID() { try { DataSet ds = ExecuteQuery("Select e.* from Estado_Humor e where e.Cod_estado like (select MAX(Cod_estado) from Estado_Humor)", getConnection(true)); DataRow row = ds.Tables[0].Rows[0]; Estado_Humor estado = new Estado_Humor(row); return estado.CODESTADO + 1; } catch (Exception e) { throw new ApplicationException("ErroBD", e); } }
public static IList LoadAll() { try { DataSet ds = ExecuteQuery("Select * From Estado_Humor", getConnection(true)); IList list = new ArrayList(); foreach (DataRow row in ds.Tables[0].Rows) { Estado_Humor estado = new Estado_Humor(row); list.Add(estado); } return list; } catch (Exception e) { throw new ApplicationException("ErroBD", e); } }