diff --git a/Products.java b/Products.java index 19028a2005ed65ae9a0fc7d1107db2a839acc140..cf5b95ac84339b262e25b14837f944f98b302499 100644 --- a/Products.java +++ b/Products.java @@ -260,6 +260,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 6967742fe60cd37bedfdc411f02c8c94d50ecadb..f5658254f19fcd07ba7353568a56d082a05bebef 100644 --- a/Staff.java +++ b/Staff.java @@ -233,6 +233,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