- WHY: establish Stage 3 task-001 execution baseline per repo intent - WHAT: add minimal solution/project skeleton and boundary docs - RULE: apply stage3 execution runtime and repository workflow directives
21 lines
579 B
Plaintext
21 lines
579 B
Plaintext
@startuml
|
|
skinparam packageStyle rectangle
|
|
|
|
package "furniture-dal" {
|
|
interface IFurnitureDataProvider
|
|
interface ICatalogDataProvider
|
|
interface IFurnitureRepository
|
|
interface ICatalogRepository
|
|
interface ICacheInvalidationPolicy
|
|
|
|
IFurnitureRepository --> IFurnitureDataProvider
|
|
ICatalogRepository --> ICatalogDataProvider
|
|
IFurnitureRepository --> ICacheInvalidationPolicy
|
|
ICatalogRepository --> ICacheInvalidationPolicy
|
|
}
|
|
|
|
package "furniture-service" as FurnitureService
|
|
FurnitureService --> IFurnitureRepository
|
|
FurnitureService --> ICatalogRepository
|
|
@enduml
|