diff --git a/Products.java b/Products.java index 417f88736e357e30fc77d8d475632db6aed0277a..1a13778032b7d23cd31fa90ece6ae6d8e3766bf5 100644 --- a/Products.java +++ b/Products.java @@ -838,6 +838,15 @@ public class Products { /* a good class, but not as good as cse391 */ 1000.0 ); } + public Product aagateProduct() { + return new Product( + "Meta quest", + "a virtual reality headset", + "metaquest.jpg", + "A meta quest 3 on Amazon", + 9.00 + ); + } public Product acuraIntegra() { return new Product ( diff --git a/Staff.java b/Staff.java index eb4e1a7b27edb8c32df7624ce32f489412982535..a8d03ec1b6a542e5b1fd26b5de303915e499ec6c 100644 --- a/Staff.java +++ b/Staff.java @@ -859,6 +859,15 @@ public class Staff { "celsius picture" ); } + public Employee aagate() { + return new Employee( + "Arohan", + "Student", + "doing homework", + "sloth.jpg", + "picture of a sloth" + ); + } public Employee kristong() { return new Employee ( diff --git a/images/products/metaquest.jpg b/images/products/metaquest.jpg new file mode 100644 index 0000000000000000000000000000000000000000..40a7ec977cd3120a1b4c92dae52586cf016a8819 Binary files /dev/null and b/images/products/metaquest.jpg differ diff --git a/images/staff/sloth.jpg b/images/staff/sloth.jpg new file mode 100644 index 0000000000000000000000000000000000000000..247e4e2355a0c676d49ff065bbf4be19e4972e19 Binary files /dev/null and b/images/staff/sloth.jpg differ