unify architectural views
This commit is contained in:
parent
386480cee6
commit
46695be708
2 changed files with 26 additions and 20 deletions
|
@ -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
|
||||
```
|
|
@ -1,20 +0,0 @@
|
|||
```plantuml
|
||||
@startuml
|
||||
package "configuration" {
|
||||
[TargetCommand]
|
||||
}
|
||||
|
||||
package "desktop" {
|
||||
[DesktopCommand]
|
||||
}
|
||||
|
||||
package "server" {
|
||||
[ServerCommand]
|
||||
}
|
||||
|
||||
server ..> configuration
|
||||
desktop ..> configuration
|
||||
|
||||
using ..> used
|
||||
@enduml
|
||||
```
|
Loading…
Reference in a new issue