diff --git a/Products.java b/Products.java index f02d9918c54fe6c70653fe4b14ae613ef249a8da..9b95adb2aedb3e4b855223b207e2cc6b4f31b2fe 100644 --- a/Products.java +++ b/Products.java @@ -19,4 +19,14 @@ public class Products { /* a good class, but not as good as cse391 */ 0.0 ); } + + public Product aryasProduct() { + return new Product( + "Monkey", + "Just an animal", + "monkey.jpg", + "monkey image", + 4.29 + ); + } } diff --git a/Staff.java b/Staff.java index a8ac5f0c1810e5f636a6e9ec12b1e719bb395841..016b40c016a094c7d0ab4a21f6e50ac5975de4cd 100644 --- a/Staff.java +++ b/Staff.java @@ -29,4 +29,14 @@ public class Staff { "My favorite plushie void the demodog chillin on the floor" ); } + + public Employee agummadi() { + return new Employee( + "Arya", + "Student", + "studies", + "arya.png", + "just an image" + ); + } } diff --git a/images/products/monkey.jpg b/images/products/monkey.jpg new file mode 100644 index 0000000000000000000000000000000000000000..67c1eec27943709bc3e658056f2ba6cc98898a58 Binary files /dev/null and b/images/products/monkey.jpg differ diff --git a/images/staff/arya.png b/images/staff/arya.png new file mode 100644 index 0000000000000000000000000000000000000000..44aa2a9b052905b28fefe8a70e41416a320345eb Binary files /dev/null and b/images/staff/arya.png differ