diff --git a/Products.java b/Products.java index 6accd313a526630628453cfd0d6f4e785972041e..bdcca185ef5c25dff2712391e1cbc939cf53d102 100644 --- a/Products.java +++ b/Products.java @@ -68,6 +68,16 @@ public class Products { /* a good class, but not as good as cse391 */ 4.29 ); } + + public Product evansProduct() { + return new Product( + "Dented Trombone", + "Super wrecked trombone but still plays wel", + "trom.png", + "very higih quality tromBONE", + 99.10 + ); + } public Product petersProduct() { return new Product( diff --git a/Staff.java b/Staff.java index fa216291bfaa6c9e8f0e47c10bb1958fb89e7ec1..f09d4a4fd124ef2adb5302fa5c67c18403023f9b 100644 --- a/Staff.java +++ b/Staff.java @@ -107,6 +107,15 @@ public class Staff { ); } + public Employee evanmao() { + return new Employee( + "Evan", + "Living well", + "Things that pay well", + "handsomeMe.jpg", + "I am very disappointed in this photo" + ); + } public Employee agummadi() { return new Employee( "Arya", diff --git a/images/products/trom.png b/images/products/trom.png new file mode 100644 index 0000000000000000000000000000000000000000..f4ed21d484239b834d3b04522da77f953c349b39 Binary files /dev/null and b/images/products/trom.png differ diff --git a/images/staff/handsomeMe.jpg b/images/staff/handsomeMe.jpg new file mode 100644 index 0000000000000000000000000000000000000000..830541fb77f24f470564c87b9344534d8931499f Binary files /dev/null and b/images/staff/handsomeMe.jpg differ