User Web API - ASP.NET Core
This is a REST API project developed with ASP.Net Core 9 that allows CRUD operations on a User entity. It uses Entity Framework Core for SQL Server database integration and includes automatic documentation via Swagger.
🚀 Features
- ✅ Full CRUD operations (Create, Read, Update, Delete)
- ✅ SQL Server integration using EF Core
- ✅ Controller-based architecture
- ✅ Swagger documentation
- ✅ Testing with Postman
🛠️ Technologies Used
- ASP.NET Core 9
- C#
- Entity Framework Core
- SQL Server
- Swagger / OpenAPI
📬 API Endpoints
GET /api/usuario/Get→ Get all usersGET /api/usuario/GetById/→ Get user by IDPOST /api/usuario/Post→ Create a new userPUT /api/usuario/Put→ Update an existing userDELETE /api/usuario/Delete→ Delete a user