diff --git a/Products.java b/Products.java index dbd6b7712c6b62153407de733c569b6fe6f5bd88..bc606ca695bdf27856b52df4b03a684e1c3302ca 100644 --- a/Products.java +++ b/Products.java @@ -705,4 +705,14 @@ public class Products { /* a good class, but not as good as cse391 */ 01 ); } + + public Product azitabProduct() { + return new Product( + "Cinnamon Roll Plushie", + "Giant Cinnamon Roll Plushie", + "cinnamonroll.jpg", + "Picture of Cinnamon Roll Plushie", + 500.00 + ); + } } diff --git a/Staff.java b/Staff.java index 89760221009276a18ca06d2ead5ef27c80cf915b..c88995479c29321f6b3a9346c4fbdad2b1c2f9cb 100644 --- a/Staff.java +++ b/Staff.java @@ -731,5 +731,15 @@ public class Staff { "Nathan Li, but widened 19x thanks to one of his closest friends" ); } + + public Employee azitab() { + return new Employee( + "Azita", + "Student", + "I'm Eating Chocolate Chips", + "hellokitty.jpg", + "Hello Kitty" + ); + } } diff --git a/images/products/cinnamonroll.jpg b/images/products/cinnamonroll.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c779256b106ee16b73a5aea863897a43add7a3e6 Binary files /dev/null and b/images/products/cinnamonroll.jpg differ diff --git a/images/staff/hellokitty.jpg b/images/staff/hellokitty.jpg new file mode 100644 index 0000000000000000000000000000000000000000..82ddf9a4c670cbbde5764a62d8221cf57a4b3e03 Binary files /dev/null and b/images/staff/hellokitty.jpg differ