-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresortbook_graph.dot
More file actions
36 lines (30 loc) · 1.02 KB
/
Copy pathresortbook_graph.dot
File metadata and controls
36 lines (30 loc) · 1.02 KB
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
digraph ResortBookArchitecture {
rankdir=LR;
node [shape=box, style="rounded,filled", fillcolor="#EAF2FF", color="#2563EB", fontname="Arial"];
User [label="Kullanici"];
Dashboard [label="DashboardController"];
Rooms [label="RoomsController"];
Bookings [label="BookingsController"];
Reports [label="ReportsController"];
BookingService [label="BookingService\nDouble-Booking Kontrolu"];
DbContext [label="AppDbContext\nEF Core"];
SQLite [label="SQLite Veritabani"];
Room [label="Room Model"];
Booking [label="Booking Model"];
Views [label="Razor Views"];
User -> Views;
Views -> Dashboard;
Views -> Rooms;
Views -> Bookings;
Views -> Reports;
Dashboard -> DbContext;
Rooms -> DbContext;
Reports -> DbContext;
Bookings -> BookingService;
BookingService -> DbContext;
DbContext -> Room;
DbContext -> Booking;
DbContext -> SQLite;
BookingService -> Booking [label="Tarih cakismasi"];
BookingService -> Room [label="Fiyat hesaplama"];
}