Test_NET API Description ASP.NET Core 8 project with MVC + API 3 controllers: StudentsController → CRUD for students CoursesController → List courses FeedbackController → Add & view feedback Uses EF Core with LocalDB SQL Server Includes Swagger for API testing API Endpoints Students GET /api/students → all students GET /api/students/{id} → student by ID POST /api/students → add student DELETE /api/students/{id} → delete student Courses GET /api/courses → all courses Feedback GET /api/feedback → all feedback POST /api/feedback → add feedback Notes Test API via Swagger or Postman MVC views available for Students, Courses, Feedback