diff --git a/Products.java b/Products.java index e13132ef2a31fcb0166e4b932943ec1e98afbf14..ad116f8af656c911af140373f546f1807bfb93bf 100644 --- a/Products.java +++ b/Products.java @@ -39,6 +39,15 @@ public class Products { /* a good class, but not as good as cse391 */ 99999999999.99 ); } + public Product akshiamProduct(){ + return new Product( + "Lake", + "Pretty lake by the mountains", + "Lake.jpg", + "Image of a snowy lake with moutains in the background", + 5.99 + ); + } public Product kevluoyrsProduct() { return new Product( "Blindr", diff --git a/Staff.java b/Staff.java index 00efcc9b89b2f5ce10422480e6e693bc464bd43f..780fe63e71f880a6a63ca87381405673cd480ef1 100644 --- a/Staff.java +++ b/Staff.java @@ -183,7 +183,16 @@ public class Staff { "Alpaca with dandelion hair" ); } - + + public Employee akshiam(){ + return new Employee( + "Akshita", + "Student", + "Learning", + "MountainSusent.jpg", + "Husky Winter Sports members watching the sunset on a mountain" + ); + } public Employee pbui27() { return new Employee( "Peter", diff --git a/images/products/Lake.jpg b/images/products/Lake.jpg new file mode 100644 index 0000000000000000000000000000000000000000..2227fcf5daa56633f2cdbb68168d99ec06ad3468 Binary files /dev/null and b/images/products/Lake.jpg differ diff --git a/images/staff/MountainSunset.jpg b/images/staff/MountainSunset.jpg new file mode 100644 index 0000000000000000000000000000000000000000..764b8cf3831f7c79c7c4c8cee087bca9e8559f6c Binary files /dev/null and b/images/staff/MountainSunset.jpg differ