You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dependencies flow from data layer through repositories and services to controllers. External dependencies (AutoMapper, FluentValidation, Serilog) integrate at their respective layers.
98
+
Dependencies flow from data layer through repositories and services to controllers. External dependencies (AutoMapper, FluentValidation, Serilog, Swashbuckle) integrate at their respective layers.
class Data,Models,Repositories,Services,Controllers,Program,Validators,Mappings core;
164
+
class AutoMapper,FluentValidation,Serilog,Swashbuckle deps;
165
+
class Tests test;
166
+
class Configurations,MemoryCache feat;
128
167
```
129
168
130
169
*Layered architecture: Core application flow (blue), supporting features (yellow), external dependencies (red), and test coverage (green). Not all dependencies are shown.*
0 commit comments