You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
762 B
Plaintext
19 lines
762 B
Plaintext
@startuml
|
|
!include ../C4.puml
|
|
' !includeurl https://raw.githubusercontent.com/RicardoNiepel/C4-PlantUML/master/C4.puml
|
|
|
|
LAYOUT_WITH_LEGEND
|
|
|
|
title System Context diagram for Internet Banking System
|
|
|
|
Person(pbc, "Personal Banking Customer", "A customer of the bank, with personal bank accounts.")
|
|
System(ibs, "Internet Banking System", "Allows customers to view information about their bank accounts, and make payments.")
|
|
System_Ext(es, "E-mail system", "The internal Microsoft Exchange e-mail system.")
|
|
System_Ext(mbs, "Mainframe Banking System", "Stores all of the core banking information about customers, accounts, transactions, etc.")
|
|
|
|
Rel(pbc, ibs, "Uses")
|
|
Rel(es, pbc, "Sends e-mails to")
|
|
Rel(ibs, es, "Sends e-mails", "SMTP")
|
|
Rel(ibs, mbs, "Uses")
|
|
@enduml
|