public string Excluir(TRegistro_Lote_X_Duplicata val) { System.Collections.Hashtable hs = new System.Collections.Hashtable(3); hs.Add("@P_ID_LOTEFIS", val.Id_lotefis); hs.Add("@P_CD_EMPRESA", val.Cd_empresa); hs.Add("@P_NR_LANCTO", val.Nr_lancto); return(this.executarProc("EXCLUI_FIS_LOTE_X_DUPLICATA", hs)); }
public TList_Lote_X_Duplicata Select(Utils.TpBusca[] vBusca, Int32 vTop, string vNM_Campo) { TList_Lote_X_Duplicata lista = new TList_Lote_X_Duplicata(); System.Data.SqlClient.SqlDataReader reader; bool podeFecharBco = false; if (Banco_Dados == null) { this.CriarBanco_Dados(false); podeFecharBco = true; } reader = this.ExecutarBusca(this.SqlCodeBusca(vBusca, Convert.ToInt16(vTop), vNM_Campo)); try { while (reader.Read()) { TRegistro_Lote_X_Duplicata reg = new TRegistro_Lote_X_Duplicata(); if (!reader.IsDBNull(reader.GetOrdinal("ID_LoteFIS"))) { reg.Id_lotefis = reader.GetDecimal(reader.GetOrdinal("ID_LoteFIS")); } if (!reader.IsDBNull(reader.GetOrdinal("cd_empresa"))) { reg.Cd_empresa = reader.GetString(reader.GetOrdinal("cd_empresa")); } if (!reader.IsDBNull(reader.GetOrdinal("NR_Lancto"))) { reg.Nr_lancto = reader.GetDecimal(reader.GetOrdinal("NR_Lancto")); } lista.Add(reg); } } finally { reader.Close(); reader.Dispose(); if (podeFecharBco) { this.deletarBanco_Dados(); } } return(lista); }