An employee management system using .NET and C# π₯οΈ. The application integrates with a MySQL database ποΈ and utilizes Entity Framework for efficient data handling π οΈ. It also implements Identity Framework for secure user authentication and authorization π.
The system exposes a Web API for managing employee data π, offering functionalities for CRUD operations β¨. This ensures a robust, scalable, and secure solution for employee management π.
API | EndPoint | Description |
---|---|---|
Employees - List |
GET /api/Emp |
Retrieves a list of all employees. π₯ |
Employees - Create |
POST /api/Emp |
Creates a new employee. π |
Employees - Details |
GET /api/Emp/{id} |
Retrieves detailed information about a specific employee by ID. π΅οΈ |
Employees - Delete |
DELETE /api/Emp/{id} |
Deletes an employee by ID. ποΈ |
Employees - Update |
PUT /api/Emp/{id:int} |
Updates an existing employee by ID. π |
This README provides a structured overview of the API endpoints, technologies used, and steps to get started with the API. Adjust the content as per your project's specific details and requirements.