public Clientes SearchClient(string noCuenta)
        {
            SqlConexion.OpenConexion();

            SqlCommand command = new SqlCommand("MostrarClientes", SqlConexion.GetConnection());

            command.CommandType = CommandType.StoredProcedure;

            SqlDataReader data = command.ExecuteReader();

            if (data.HasRows)
            {
                Clientes cuentaBuscada = null;
                while (data.Read())
                {
                    cuentaBuscada = new Clientes()
                    {
                        ClienteId       = data.GetInt32(0),
                        NoCedula        = data.GetString(1),
                        FechaNacimiento = data.GetDateTime(2),
                        Nombres         = data.GetString(3),
                        Apellidos       = data.GetString(4)
                    };
                }

                SqlConexion.CloseConexion();
                return(cuentaBuscada);
            }

            return(null);
        }
        public List <Transacciones> GetTransacciones()
        {
            SqlConexion.OpenConexion();

            SqlCommand command = new SqlCommand("MostrarTablaTransaciones", SqlConexion.GetConnection());

            command.CommandType = CommandType.StoredProcedure;

            SqlDataReader        read          = command.ExecuteReader();
            List <Transacciones> transacciones = new List <Transacciones>();

            while (read.Read())
            {
                Transacciones tran = new Transacciones()
                {
                    TransaccionId     = read.GetInt32(0),
                    ClienteId         = read.GetInt32(1),
                    Saldo_Anterior    = read.GetDecimal(2),
                    Importe           = read.GetDecimal(3),
                    Saldo_Nuevo       = read.GetDecimal(4),
                    TipoOperacionId   = read.GetInt32(5),
                    EmpleadoId        = read.GetInt32(6),
                    Fecha_Transaccion = read.GetDateTime(7)
                };


                transacciones.Add(tran);
            }
            SqlConexion.CloseConexion();
            return(transacciones);
        }
        public DataTable GetAgencias()
        {
            SqlConexion.OpenConexion();

            SqlCommand command = new SqlCommand("MostrarAgencias",
                                                SqlConexion.GetConnection());

            command.CommandType = CommandType.StoredProcedure;

            SqlDataAdapter data  = new SqlDataAdapter(command);
            DataTable      table = new DataTable();

            data.Fill(table);
            SqlConexion.CloseConexion();
            return(table);
        }