public string Excluir(TRegistro_Emprestimos_X_CCusto val) { System.Collections.Hashtable hs = new System.Collections.Hashtable(3); hs.Add("@P_ID_EMPRESTIMO", val.Id_emprestimo); hs.Add("@P_CD_EMPRESA", val.Cd_empresa); hs.Add("@P_ID_CCUSTOLAN", val.Id_ccustolan); return(this.executarProc("EXCLUI_FIN_EMPRESTIMOS_X_CCUSTO", hs)); }
public TList_Emprestimos_X_CCusto Select(Utils.TpBusca[] vBusca, Int32 vTop, string vNM_Campo) { TList_Emprestimos_X_CCusto lista = new TList_Emprestimos_X_CCusto(); System.Data.SqlClient.SqlDataReader reader = null; bool podeFecharBco = false; if (Banco_Dados == null) { podeFecharBco = this.CriarBanco_Dados(false); } try { reader = this.ExecutarBusca(this.SqlCodeBusca(vBusca, Convert.ToInt16(vTop), vNM_Campo)); while (reader.Read()) { TRegistro_Emprestimos_X_CCusto reg = new TRegistro_Emprestimos_X_CCusto(); if (!reader.IsDBNull(reader.GetOrdinal("Id_emprestimo"))) { reg.Id_emprestimo = reader.GetDecimal(reader.GetOrdinal("Id_emprestimo")); } if (!reader.IsDBNull(reader.GetOrdinal("cd_empresa"))) { reg.Cd_empresa = reader.GetString(reader.GetOrdinal("cd_empresa")); } if (!reader.IsDBNull(reader.GetOrdinal("id_ccustolan"))) { reg.Id_ccustolan = reader.GetDecimal(reader.GetOrdinal("id_ccustolan")); } lista.Add(reg); } } finally { reader.Close(); reader.Dispose(); if (podeFecharBco) { this.deletarBanco_Dados(); } } return(lista); }