-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathc4-banking-system.puml
40 lines (29 loc) · 966 Bytes
/
c4-banking-system.puml
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
@startuml
!include ../src/c4.puml
title Banking system
caption This is the Banking System example taken from https://c4model.com/
rectangle email_system <<External System>> [
**E-mail system**
The internal Microsoft Exchange
e-mail system
]
together {
actor "Personal Banking \nCustomer" <<Internal Person>> as customer
rectangle internet_banking <<System>> [
**Internet Banking System**
Allows customers to view
information about their bank,
accounts and make payments
]
rectangle mfb <<External System>> [
**Mainframe Banking System**
Allows customers to view
information about their bank
accounts and make payments
]
}
customer .down.> internet_banking : uses
internet_banking .down.> mfb : uses
internet_banking .right.> email_system : send e-mails\nusing
email_system ..> customer : send e-mails to
@enduml