diff --git a/README.md b/README.md index 38497f0..d5e52b1 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ ## Core / Extension Requirements -You're going to add some code to the endpoint methods to get the counter API working. The Counter object is a model to represent an item (using Name property) and how many of those items (Value property) you may have. It has Id, Name and Value properties. +You're going to add some code to the endpoint methods to get the counter API working in the api-counter.wwwapi9 project. The Counter object is a model to represent an item (using Name property) and how many of those items (Value property) you may have. It has Id, Name and Value properties. The List counters is the collection you will use within the controller to store counters. @@ -26,5 +26,5 @@ I would encourage you to attempt the Core and Extensions in this exercise. ## Further work -Explore the documentation of the ASP.NET framework as much as you are able, you'll be using it for almost everything going forward. We'll be introducing new components of the framework in future exercises. - +- Explore the documentation of the ASP.NET framework as much as you are able, you'll be using it for almost everything going forward. We'll be introducing new components of the framework in future exercises. +- Examine the other projects that are included in this repository but have been removed from the solution. Be aware of the main differences between different versions of API's. I would recommend at some point in the future looking into Controller based API's (version 7.0) as these are heavily used within the industry.