diff --git a/Products.java b/Products.java index 826fd0034cbde34fffbf962c45b615aa15d8236c..ed665cac76fd9a5217f9a7f1e24253adec498f26 100644 --- a/Products.java +++ b/Products.java @@ -187,6 +187,16 @@ public class Products { /* a good class, but not as good as cse391 */ ); } + public Product helenasProduct() { + return new Product( + "Stan the Stand", + "A true gentleman", + "StanTheStand.jpg", + "A music stand with a top hat and rose playing a djembe", + 391.0 + ); + } + public Product aryasProduct() { return new Product( "Monkey", diff --git a/Staff.java b/Staff.java index f52b0ba108f9ab312e2e9dd755655bd1c9b31915..ba887a3c5c39a5401628fcd8c534ae49be5f83c7 100644 --- a/Staff.java +++ b/Staff.java @@ -174,6 +174,16 @@ public class Staff { ); } + public Employee helenaz9() { + return new Employee( + "Helena", + "Student", + "Frequents Lander desk water fountain", + "penguin.jpg", + "A ceramic penguin" + ); + } + public Employee cjobes() { return new Employee( "Colton", diff --git a/images/products/StanTheStand.jpg b/images/products/StanTheStand.jpg new file mode 100644 index 0000000000000000000000000000000000000000..1a7be3ebfbcb05618f32f6abf0fe96605189de46 Binary files /dev/null and b/images/products/StanTheStand.jpg differ diff --git a/images/staff/penguin.jpg b/images/staff/penguin.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6b54957689cba06a742522e93fb370e2c1b776fa Binary files /dev/null and b/images/staff/penguin.jpg differ