Esempio n. 1
0
        void oneStar_MouseClick(object sender, MouseEventArgs e)
        {
            DBConnect rater = new DBConnect();

            rater.addRating(currMovie.getMID(), UID, 1);
            userRated   = true;
            movieRating = 1;
        }
Esempio n. 2
0
 void twoStar_MouseClick(object sender, MouseEventArgs e)
 {
     DBConnect rater = new DBConnect();
     rater.addRating(currMovie.getMID(), UID, 2);
     userRated = true;
     movieRating = 2;
 }