Ejemplo n.º 1
0
 public Q4(int level, string user_email)
 {
     db              = new DB_ConnectQ3Q4();
     this.Level      = level;
     this.Question   = "What is the name of the artist that sang the song <song_name> from the <album_name> album?";
     this.User_email = user_email;
     this.Question   = buildQuestion();
     this.Clue       = buildClue();
     WrongAnswers    = buildAnswers();
 }
Ejemplo n.º 2
0
 public Q3(int level, string user_email)
 {
     db              = new DB_ConnectQ3Q4();
     this.Level      = level;
     this.Question   = "Where the artist <artist_name> was born?";
     this.User_email = user_email;
     this.Question   = buildQuestion();
     this.Clue       = buildClue();
     //string[] Answers = buildAnswers();
     WrongAnswers = buildAnswers();
 }