diff --git a/Products.java b/Products.java index 80cd8812c4f6f707297fd2da7f89d6e13873d5ed..d1822c8a3ded0d3b22b8d2256d8348ec54249bcf 100644 --- a/Products.java +++ b/Products.java @@ -39,4 +39,14 @@ public class Products { /* a good class, but not as good as cse391 */ 4.29 ); } + + public Product tuongcatProduct() { + return new Product( + "Panda", + "panda", + "panda.jpg", + "panda image", + 10000 + ); + } } diff --git a/Staff.java b/Staff.java index c51a78d2b22d35f1b52fb4a57f3b04f13271538d..2563f4b2f5576b0fda99b12b9b233d92536b08dc 100644 --- a/Staff.java +++ b/Staff.java @@ -49,4 +49,14 @@ public class Staff { "just an image" ); } + + public Employee tuongcat() { + return new Employee( + "Cat", + "student", + "studies", + "panda.jpg", + "panda icon" + ); + } } diff --git a/images/products/panda.jpg b/images/products/panda.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e6ccbfed180bc82d2202930045cb46c9459fe06 Binary files /dev/null and b/images/products/panda.jpg differ diff --git a/images/staff/panda.jpg b/images/staff/panda.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2e6ccbfed180bc82d2202930045cb46c9459fe06 Binary files /dev/null and b/images/staff/panda.jpg differ