示例#1
0
        //Add to Watchlist Button
        private void AddBtn_Click(object sender, EventArgs e)
        {
            WishlistMovie wishlist = new WishlistMovie();

            if (wishlist.Add(userID, Movie.Id))
            {
                MessageBox.Show("Successfully added movie to wishlist.", "Wishlist");
            }
        }