In chapter, 1 we looked at how microservices work and how they can be characterized. You also set up a simple technology stack—C#, ASP.NET, and the ASP.NET MVC framework—that lets you create microservices easily, and you saw a basic shopping cart microservice. In this chapter, you’ll implement the four main parts of this microservice using the same technology stack:
- A basic HTTP-based API allowing clients to retrieve a cart, delete it, and add items to it. Each of these methods will be visible as an HTTP endpoint, such as http://myservice/add/{item_number}.
- A call from one service to another for more information. In this case, the shopping cart microservice will ask the product catalog microservice for product information based on the item_number of the item being added to the cart.
- An event feed that the service will use to publish events to the rest of the system. By creating an event feed for the shopping cart, you’ll make it possible for other services (such as a recommendation engine) to update their own data and improve their capabilities.
- The domain logic for implementing the behavior of the shopping cart.