Welcome to WebApp PoC

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 Employees
MVC UI

Full CRUD operations with Razor views for Products and Employees management.

Products Employees
Web API 2

RESTful APIs available at /api/products and /api/employees.

Products API Employees API
Azure Ready

This application is configured and ready for deployment to Azure App Service.

Learn More
API Endpoints
Method Endpoint Description
GET/api/productsGet all products
GET/api/products/{id}Get product by ID
POST/api/productsCreate new product
PUT/api/products/{id}Update product
DELETE/api/products/{id}Delete product
GET/api/employeesGet all employees
GET/api/employees/{id}Get employee by ID
GET/api/employees/department/{dept}Get employees by department
POST/api/employeesCreate new employee
PUT/api/employees/{id}Update employee
DELETE/api/employees/{id}Delete employee