-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathintegrated-model_2.plantuml
199 lines (156 loc) · 4.73 KB
/
integrated-model_2.plantuml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
@startuml IntegratedModel2Polyline
scale 1.5
skinparam shadowing false
skinparam monochrome true
' skinparam linetype ortho
skinparam linetype polyline
rectangle "Takso System" <<context map>> {
rectangle "User Service" as UserService <<bounded context>> {
entity "User Catalog" as UserCatalog <<repository>> {
}
entity User <<entity>> {
Name
Phone
Email
}
UserCatalog *-- User
}
rectangle "Customer Service" as CustomerService <<bounded context>> {
entity "Customer Catalog" as CustomerCatalog <<repository>>
entity Customer <<entity>> {
}
enum "Status" as CustomerStatus <<value object>> {
ACTIVEL: Status
INACTIVE: Status
}
CustomerCatalog *-- Customer
Customer *-- CustomerStatus
}
rectangle "Driver Service" as DriverService <<bounded context>> {
entity "Driver Catalog" as DriverCatalog <<repository>>
entity Driver <<entity>> {
}
enum "Status" as DriverStatus <<value object>> {
AVAILABLE: Status
UNAVAILABLE: Status
}
DriverCatalog *-- Driver
Driver *-- DriverStatus
}
rectangle "Ride Service" as RideService <<bounded context>> {
entity "Ride Catalog" as RideCatalog <<repository>>
entity Ride <<entity>> {
Created timestamp
Price
Estimated arrival time
}
entity Location <<value object>> {
Latitude
Longitude
}
enum "Status" as RideStatus <<value object>> {
PENDING: Status
ACCEPTED: Status
IN PROGRESS: Status
COMPLETED: Status
CANCELLED: Status
}
User <|-- Customer
User <|-- Driver
Ride *-- RideStatus
RideCatalog *-- Ride
Ride *-- Location
Driver --> Ride : chooses
Customer --> Ride : orders
}
rectangle "Wallet Service" as WalletService <<bounded context>> {
entity "Wallet Catalog" as TaksoBank <<repository>> {
}
entity Wallet <<entity>> {
Balance
}
TaksoBank o-- Wallet
User --> Wallet : has
}
}
hide <<entity>> circle
hide <<entity>> methods
hide <<value object>> circle
hide <<value object>> methods
hide <<repository>> circle
hide <<repository>> methods
hide <<repository>> methods
rectangle "Foodo System" as FoodoSystem <<context map>> {
rectangle "User Service" as UserServiceFoodo <<bounded context>> {
entity "User" as UserFoodo <<entity>> {
Username
Password
}
entity "Location" as LocationFoodo <<value object>> {
Latitude
Longitude
}
}
rectangle "Customer Service" as CutomerServiceFoodo <<bounded context>> {
entity "Customer" as CustomerFoodo <<entity>> {
}
}
rectangle "Payment Service" as PaymentServiceFoodo <<bounded context>> {
entity "Card" as CardFoodo <<entity>>{
Card number
Expiration date
CVV
}
}
rectangle "Order Service" as OrderServiceFoodo <<bounded context>> {
entity "Order" as OrderFoodo <<entity>> {
Delivery price
Meal price
Total price
}
enum "OrderStatus" as OrderStatusFoodo <<value object>> {
PENDING: Status
ACCEPTED: Status
IN PROGRESS: Status
COMPLETED: Status
CANCELLED: Status
}
}
rectangle "Restaurant Service" as RestaurantServiceFoodo <<bounded context>> {
entity RestaurantCatalog <<repository>> {
}
entity Restaurant <<entity>> {
}
entity Meal <<entity>> {
name
price
description
}
entity Menu <<entity>> {
}
RestaurantCatalog o-- Restaurant
Restaurant o-- Menu
Menu o-- Meal
}
rectangle "Delivery Service" as DeliveryServiceFoodo <<bounded context>> {
entity "Driver" as DriverFoodo <<entity>> {
}
}
CustomerFoodo --|> UserFoodo
DriverFoodo --|> UserFoodo
Restaurant --|> UserFoodo
UserFoodo *-- LocationFoodo
OrderFoodo <-- CustomerFoodo : creates, pays for
OrderFoodo <-- DriverFoodo : takes, completes
OrderFoodo <-- Restaurant : receives, completes
OrderFoodo o-- OrderStatusFoodo
Meal --o OrderFoodo
CustomerFoodo o-- CardFoodo
Menu <-- CustomerFoodo : query
RestaurantCatalog <-- CustomerFoodo : query
OrderFoodo o-- UserFoodo
}
CustomerFoodo --> Wallet : has
Driver --> OrderFoodo : gets, completes
User --> UserFoodo : has data about
@enduml