Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 703 Bytes

File metadata and controls

22 lines (17 loc) · 703 Bytes

Project Flow

The diagram below summarizes how requests are processed in the Task Manager API.

flowchart TD
    Client((Client)) -->|HTTP request| Controller[Controllers]
    Controller --> Service[Services]
    Service --> Dal[DAL]
    Dal --> Db[(Database)]
    Service -->|Returns data| Controller
    Controller -->|JSON| Client
Loading

Each layer has a specific responsibility:

  • Controllers handle HTTP requests and responses.
  • Services contain business logic.
  • DAL (Data Access Layer) interacts with the database via Entity Framework Core.
  • Database stores tasks, categories, and users.

Use this diagram to explain the flow of information through the application.