diff --git a/doc/ddd.md b/doc/ProvsArchitecture.md similarity index 56% rename from doc/ddd.md rename to doc/ProvsArchitecture.md index 4bffb37..70211a3 100644 --- a/doc/ddd.md +++ b/doc/ProvsArchitecture.md @@ -1,3 +1,28 @@ +# Bounded Contexts + +```plantuml +@startuml +package "configuration" { + [TargetCommand] +} + +package "desktop" { + [DesktopCommand] +} + +package "server" { + [ServerCommand] +} + +server ..> configuration +desktop ..> configuration + +using ..> used +@enduml +``` + +# DDD in Provs + ```plantuml @startuml 'https://plantuml.com/class-diagram @@ -22,5 +47,6 @@ Service ..> Service Service ..> Repository Service ..> Provs +using ..> used @enduml ``` \ No newline at end of file diff --git a/doc/boundedContexts.md b/doc/boundedContexts.md deleted file mode 100644 index 2978568..0000000 --- a/doc/boundedContexts.md +++ /dev/null @@ -1,20 +0,0 @@ -```plantuml -@startuml -package "configuration" { - [TargetCommand] -} - -package "desktop" { - [DesktopCommand] -} - -package "server" { - [ServerCommand] -} - -server ..> configuration -desktop ..> configuration - -using ..> used -@enduml -``` \ No newline at end of file