A simple ASP.NET Core Web API for managing employee data with CRUD functionality, using an in-memory database.
- ASP.NET Core for the API
- Entity Framework Core for data access
- In-Memory Database for testing
- Swagger for API documentation
- CORS enabled for frontend requests (e.g., from Angular)
- GET /api/Employee - Retrieve all employees
- GET /api/Employee/{id} - Retrieve employee by ID
- POST /api/Employee - Create a new employee
- PUT /api/Employee/{id} - Update an existing employee
- DELETE /api/Employee/{id} - Delete an employee by ID
This project is licensed under the MIT License.