public List <DetalleCuentaBanco> consultarCuentasBancarias(Conexion _conexion, Int16 Corporativo, Int16 Banco)
            {
                try
                {
                    List <DetalleCuentaBanco> ListaRetorno = new List <DetalleCuentaBanco>();

                    _conexion.Comando.CommandType = CommandType.StoredProcedure;
                    _conexion.Comando.CommandText = "spCBConsultaCuentaBanco";
                    _conexion.Comando.Parameters.Clear();
                    _conexion.Comando.Parameters.Add(new SqlParameter("@Corporativo", System.Data.SqlDbType.TinyInt)).Value = Corporativo;
                    _conexion.Comando.Parameters.Add(new SqlParameter("@Banco", System.Data.SqlDbType.SmallInt)).Value      = Banco;
                    SqlDataReader reader = _conexion.Comando.ExecuteReader();

                    if (reader.HasRows)
                    {
                        while (reader.Read())
                        {
                            DetalleCuentaBanco dato = new DetalleCuentaBanco(
                                Convert.ToInt32(reader["Identificador"]),
                                Convert.ToString(reader["Descripcion"])
                                );
                            ListaRetorno.Add(dato);
                        }
                        reader.Close();
                    }
                    return(ListaRetorno);
                }
                catch (Exception ex)
                {
                    throw ex;
                }
            }
Exemple #2
0
        public List <DetalleCuentaBanco> consultarCuentasBancarias(Conexion _conexion, short Corporativo, short Banco)
        {
            List <DetalleCuentaBanco> ListaResultado;
            DetalleCuentaBanco        objDatos = new DetalleCuentaBanco();

            ListaResultado = objDatos.consultarCuentasBancarias(_conexion, Corporativo, Banco);
            return(ListaResultado);
        }