diff --git a/Products.java b/Products.java index befa15dd086b312e95a8efea9fe0256ec00f3d69..2a31ab1258985837a504540f825228709f5a66e7 100644 --- a/Products.java +++ b/Products.java @@ -694,4 +694,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 5e3ac227b80bfaa6bdcf9384e901fc00d51760c4..756c4095e504382e0513310768b56527e368b199 100644 --- a/Staff.java +++ b/Staff.java @@ -722,5 +722,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