https://github.com/binhnhu1409/-practice-csharp--todo-app-backend
Design the structure of backend for TODO app using C#
https://github.com/binhnhu1409/-practice-csharp--todo-app-backend
backend csharp
Last synced: 12 months ago
JSON representation
Design the structure of backend for TODO app using C#
- Host: GitHub
- URL: https://github.com/binhnhu1409/-practice-csharp--todo-app-backend
- Owner: binhnhu1409
- Created: 2023-02-11T10:21:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-02-11T20:54:18.000Z (over 3 years ago)
- Last Synced: 2025-03-24T04:33:11.034Z (over 1 year ago)
- Topics: backend, csharp
- Language: C#
- Homepage:
- Size: 126 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# -PRACTICE-Csharp--TODO-app-backend
In this assignment, the task is to design structure and hierachy for a backend service of TODO app using C# (no connect database yet).
## Structure
```
│ -PRACTICE-Csharp--TODO-app-backend.csproj
│ Program.cs
│ README.md
├───Controllers
│ TodoController.cs
├───DTOs
│ TodoRequest.cs
├───Models
│ TodoTask.cs
│ User.cs
├───Repositories
│ FakeTodoRepository.cs
│ ITodoRepository.cs
└───Services
ITodoService.cs
```