diff --git a/Products.java b/Products.java index 556c9567f3dfcdabe1ab64cc460a0f9c7476ba42..c3bc0bc222d93fd61e225975adb50bed48fdcb04 100644 --- a/Products.java +++ b/Products.java @@ -975,4 +975,15 @@ public class Products { /* a good class, but not as good as cse391 */ 5.00 ); } + + public Product ivt3Product() { + return new Product( + "caramel latte", + "delicous caffinated beverage", + "caramel-latte.jpg", + "yummy latte in a glass cup with caramel drizzle", + 8.00 + ); + } + } diff --git a/Staff.java b/Staff.java index 55dbbbc6b7e1bd20b5caaed958a91f233a2cc823..70a1ea72eaeb5a4310d07484b0bc0204946320bb 100644 --- a/Staff.java +++ b/Staff.java @@ -1004,5 +1004,15 @@ public class Staff { "boba,jpg", "some boba"); } + + public Employee ivt3() { + return new Employee( + "Isabelle Tinsley", + "Student", + "I like to row", + "uw-rowing.png", + "girls in the boat"); + } + } diff --git a/images/products/caramel-latte.jpg b/images/products/caramel-latte.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4cf5014ca7c8fab83397365fbe1145f3ea2e42d3 Binary files /dev/null and b/images/products/caramel-latte.jpg differ diff --git a/images/staff/uw-rowing.png b/images/staff/uw-rowing.png new file mode 100644 index 0000000000000000000000000000000000000000..2a613f1fa1ccf7ebc547bcbd6c7ba17908a51562 Binary files /dev/null and b/images/staff/uw-rowing.png differ