remove findbyid because super()

test quizz works for now
This commit is contained in:
Vu Tuan Minh
2025-09-26 02:11:36 +02:00
parent 4cb77f6158
commit 8abcff6dde
6 changed files with 25 additions and 31 deletions

View File

@@ -10,19 +10,18 @@ classDiagram
Reponse <|-- ReponseCourte
Reponse <|-- Choix
class Utilisateur {
-id : int
-name : String
-session : List<Session>
-session : List <Session>
-email : String
-password : String
-quizzs : String
}
class Session{
-codePin : int
-quizzs : List<Quizz>
-utilisateurs : List<Utilisateur>
-quizzs : List <Quizz>
-utilisateurs : List <Utilisateur>
-theme : int
}
class Quizz{
@@ -33,15 +32,13 @@ classDiagram
class Reponse{
-id : int
-question: Question
-reponses : ArrayList<String>
-reponses : ArrayList <String>
}
class Choix{
-choix : ArrayList<String>
-choix : ArrayList <String>
}
class ReponseCourte{
-value : String
+getId()int
}
class Question{
-id : int