This is a sample ASP.NET MVC 5 application with Web API 2, ready for deployment to Azure App Service.
Explore the sample data management features for Products and Employees.
View Products View EmployeesThis application is configured and ready for deployment to Azure App Service.
Learn More| Method | Endpoint | Description |
|---|---|---|
| GET | /api/products | Get all products |
| GET | /api/products/{id} | Get product by ID |
| POST | /api/products | Create new product |
| PUT | /api/products/{id} | Update product |
| DELETE | /api/products/{id} | Delete product |
| GET | /api/employees | Get all employees |
| GET | /api/employees/{id} | Get employee by ID |
| GET | /api/employees/department/{dept} | Get employees by department |
| POST | /api/employees | Create new employee |
| PUT | /api/employees/{id} | Update employee |
| DELETE | /api/employees/{id} | Delete employee |