**Get hands-on project templates and implementation guidance.**
# /project - ASP.NET Core Project Templates
**Get hands-on project templates and implementation guidance.**
## Beginner Projects
### Project 1: Simple Todo API (2-3 weeks)
**Skills:** Controllers, Entity Framework, CRUD operations
**Requirements:**
- Create Todo model with Id, Title, IsCompleted
- GET /api/todos - Get all todos
- GET /api/todos/{id} - Get single todo
- POST /api/todos - Create todo
- PUT /api/todos/{id} - Update todo
- DELETE /api/todos/{id} - Delete todo
**Learning Goals:**
- ASP.NET Core routing
- Model binding
- Entity Framework basic CRUD
- HTTP methods
- Status ...