-
Notifications
You must be signed in to change notification settings - Fork 5
/
bounded-context.html
51 lines (49 loc) · 1.7 KB
/
bounded-context.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Mermaid Quick Test Page</title>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mermaid/8.4.2/mermaid.js"></script>
<script type="text/javascript"
src="https://cdnjs.cloudflare.com/ajax/libs/mermaid/8.4.2/mermaid.core.js.map"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mermaid/8.4.2/mermaid.core.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<div class="mermaid" id="graphDiv">
classDiagram
class Exam
Exam : +String examinee
Exam : +Date description
Exam : +Integer correct
Exam : +Integer sum
Exam : +Integer correct
Exam : +Integer id
Exam : +ExamStatus status
Exam : +Integer configurationId
Exam : +String issuer
Exam : +String configurationId
Exam : +String examDate
class Choice
Choice : +boolean correct
Choice : +Question question
Choice : +Integer id
Choice : +boolean chosen
Choice : +boolean correct
Choice : +String body
class Question
Question : +Choice description
Question : +String code
Question : +Integer id
Question : +Exam exam
Question : +String body
Question "1" --> "*" Choice
</div>
<script>
mermaidAPI.initialize({
startOnLoad:true
});
</script>
</body>
</html>