diff --git a/Products.java b/Products.java index 8777810ee14715588147ed878be34e43b812f69d..73c242e8c300ee6be68dac8631ff33dae90ba372 100644 --- a/Products.java +++ b/Products.java @@ -250,6 +250,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 15903031130dd7895f38a7fb3e645334b9c6a874..e319cfa57cbee318f7aa76b0097242b4cf082fc7 100644 --- a/Staff.java +++ b/Staff.java @@ -224,6 +224,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