Simple RESTful web service that performas CRUD operations for Products.
Standard Visual Studio way to run/test the application.
For simplicity, I chose EF in-memory database.
For good programming practice, we should achieve >80% unit testing coverage. Due to time limitation, this project has only controller covered.
We should have Role Based Access Control to have a achieve better authentication/authorisation practice. Specifically, assign user roles, but use permissions to control the access. Due to time limitation, I only implemented the most basic authentication, i.e. protecting the non-idempotent operations.