public string DeletarPais(TRegistro_CadPais val) { Hashtable hs = new Hashtable(1); hs.Add("@P_CD_PAIS", val.Cd_pais); return(this.executarProc("EXCLUI_FIN_PAIS", hs)); }
public string GravarPais(TRegistro_CadPais val) { Hashtable hs = new Hashtable(2); hs.Add("@P_CD_PAIS", val.Cd_pais); hs.Add("@P_NM_PAIS", val.Nm_pais); return(this.executarProc("IA_FIN_PAIS", hs)); }
public TList_CadPais Select(TpBusca[] vBusca, Int32 vTop, string vNM_Campo) { bool podeFecharBco = false; TList_CadPais lista = new TList_CadPais(); if (Banco_Dados == null) { this.CriarBanco_Dados(false); podeFecharBco = true; } SqlDataReader reader = this.ExecutarBusca(this.SqlCodeBusca(vBusca, vTop, vNM_Campo)); try { while (reader.Read()) { TRegistro_CadPais reg = new TRegistro_CadPais(); if (!(reader.IsDBNull(reader.GetOrdinal("Cd_pais")))) { reg.Cd_pais = reader.GetString(reader.GetOrdinal("Cd_pais")); } if (!(reader.IsDBNull(reader.GetOrdinal("Nm_pais")))) { reg.Nm_pais = reader.GetString(reader.GetOrdinal("Nm_pais")); } lista.Add(reg); } } finally { reader.Close(); reader.Dispose(); if (podeFecharBco) { this.deletarBanco_Dados(); } } return(lista); }