Prompt C - mainscreen.html, line 14: I changed the title name to "Mit's Toy Store".
Prompt C - mainscreen.html, line 19: I change the h1 tag to "Toy Shop".
Prompt D - about.html, line 1 - 28: I created this "about.html" page and added the html layout. I also added couple of lines worth of information regarding my store.
Prompt D - about.html, line 14 and line 19: I added title "About Us" and a heading for my about page respectively.
Prompt D - about.html, line 25: I added a button that would take me back to the main screen.
Prompt D - mainscreen.html, line 21: I added a button that would me to the "About us".
Prompt D - MainScreenControllerr.java, line 56-59: I added a Controller to enable access to my about page.
Prompt E - BootStrapData.java, line 36 -79 , Added 5 new outsourced parts to the parts repository.
Prompt E - BootStrapData.java, line 87 - 101, Added 5 new products to the product repository.
Prompt F - mainscreen.html, line 86: I added a buy now button next to update and delete button
Prompt F - success.html, line 1 - 12: I created this file to display a message that indicates that it was purchased successfully.
Prompt F - failure.html, line 1 - 12: I created this file to display a message that indicates that it was not successfully purchased.
Prompt F - BuyController.java, line 1 - 46: Created new controller for buyProduct, by returning if the purchase was successful or if not it returns by saying purchase was unsuccessful.
Prompt G - Part.java, line 31 -34: Created 2 new variables using the @Min annotations.
Prompt G - Part.java, line 56- 57: Added min and max to the constructor.
Prompt G - Part.java, line 99 -113: Added 4 new getter and setter methods to get and set both minInv and maxInv.
Prompt G - BootStrapData.java, line 44-45: Added .setMin and .setMax.
Prompt G - BootStrapData.java, line 55-56: Added .setMin and .setMax.
Prompt G - BootStrapData.java, line 66-67: Added .setMin and .setMax.
Prompt G - BootStrapData.java, line 77-78: Added .setMin and .setMax.
Prompt G - BootStrapData.java, line 87-89: Added .setMin and .setMax.
Prompt G - mainscreen.html, line 40-41: Added Min and Max to the table.
Prompt G - mainscreen.html, line 49-50: Added rows Min and Max.
Prompt G - OutsourcedPartForm.html, line 25-29: Added 2 entry fields to enable user to enter min & max inventory limits.
Prompt G - inhousePartForm.html, line 24-28: Added 2 entries for adding min and man values.
Prompt G - application.properties, line 6: Changed database name.
Prompt H - ValidMin.java, line 1-24: Created file for the minimum inventory validator.
Prompt H - MinValidator.java, line 1-30: Created file for the minimum validator class.
Prompt H - Part.java, line 21: Added a minimum validator.
Prompt H - EnufPartsValidator.java, line 37-38: Added a new logic for min when parts are decrementing from products.
Prompt H - ValidMax.java, line 1-22: Created file for the minimum inventory validator.
Prompt H - MaxValidator.java, line 1-29: Created file for the minimum validator class.
Prompt H - Part.java, line 22: Added a maximum validator.
Prompt H - OutsourcedPartForm.html, 33-37: Added to display error message.
Prompt H - inhousePartForm.html, 32-36: Added to display error message.
Prompt I - PartTest.java, line 160-194: Added unit tests for the maximum and minimum fields.
Prompt J - Deleted DeletePartValidator.java as it has no usage.