mirror of
https://github.com/chai2010/advanced-go-programming-book.git
synced 2025-05-24 12:32:21 +00:00
34 lines
615 B
Plaintext
34 lines
615 B
Plaintext
@startuml interface-impl
|
|
|
|
interface OrderCreator
|
|
|
|
OrderCreator <|-- O2OOrderCreator
|
|
OrderCreator <|-- B2BOrderCreator
|
|
|
|
interface OrderCreator {
|
|
ValidateDistrict()
|
|
ValidateVIPProduct()
|
|
GetUserInfo()
|
|
GetProductDesc()
|
|
DecrementStorage()
|
|
CreateOrderSnapshot()
|
|
}
|
|
|
|
class O2OOrderCreator {
|
|
ValidateDistrict()
|
|
ValidateVIPProduct()
|
|
GetUserInfo()
|
|
GetProductDesc()
|
|
DecrementStorage()
|
|
CreateOrderSnapshot()
|
|
}
|
|
|
|
class B2BOrderCreator {
|
|
ValidateDistrict()
|
|
ValidateVIPProduct()
|
|
GetUserInfo()
|
|
GetProductDesc()
|
|
DecrementStorage()
|
|
CreateOrderSnapshot()
|
|
}
|
|
@enduml |