Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 712 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 712 Bytes

Employee Management API

A simple ASP.NET Core Web API for managing employee data with CRUD functionality, using an in-memory database.

Technologies

  • 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)

Endpoints

  • 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

License

This project is licensed under the MIT License.