At first glance, adding a purchase seems like a trivial process. Looking deeper, however, it becomes clear that we need to somehow bring together information about the customer making the purchase, as well as the products to be purchased.Â
Altogether, the process of adding a new purchase entails the following:
- Authenticate the customer.
- Select products and quantities to be purchased.
- Add the purchase to the database.
Before we can accomplish all of this, however, we need to introduce three new classes that provide web support: web.session.Session, web.auth.Authenticate, and web.responder.Html.