-
Notifications
You must be signed in to change notification settings - Fork 6
/
extensions.puml
27 lines (23 loc) · 891 Bytes
/
extensions.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
@startuml
!include <domainstory/Domainstory>
'!include ../domainStory.puml
'!include https://raw.githubusercontent.com/johthor/DomainStory-PlantUML/main/domainStory.puml
' Actors
!include <material/store>
!unquoted procedure Merchant($name, $label = "", $color = "", $scale = "", $note = "")
Actor("Merchant", "$ma_store", $name, $label, $color, $scale, $note)
!endprocedure
!include <material/crown>
!unquoted procedure Customer($name, $label = "", $color = "", $scale = "", $note = "")
Actor("Customer", "$ma_crown", $name, $label, $color, $scale, $note)
!endprocedure
!include <material/settings_box>
!unquoted procedure Process($name, $label = "", $color = "", $scale = "", $note = "")
Actor("Process", "$ma_settings_box", $name, $label, $color, $scale, $note)
!endprocedure
Boundary(actors) {
Merchant(Merchant)
Customer(Customer)
Process(Process)
}
@enduml