diff --git a/Products.java b/Products.java index beef4671956f7dc203e489a22bf3611f8af42008..290025bae914a9a084321f89fbf9f56688190d1c 100644 --- a/Products.java +++ b/Products.java @@ -18,6 +18,15 @@ public class Products { /* a good class, but not as good as cse391 */ 99999.99 ); } + public Product ahmincsProduct() { + return new Product( + "moorb", + "broom but better because broom", + "broom.PNG", + "image of legendary broom that might also be my profile", + 0.92 + ); + } public Product rairai77sProudct() { return new Product( "Cheeto Dust", diff --git a/Staff.java b/Staff.java index 1c53b7efc158ecd7ea8a5e15eac2cc18090a8cc1..87d586a741fad84b6048ed30a01826bfabed6ec6 100644 --- a/Staff.java +++ b/Staff.java @@ -27,6 +27,14 @@ public class Staff { "A snorlax sitting" ); } + public Employee ahminc() { + return new Employee() { + "Ahmin Chang", + "Professional Broom Inspector", + "broom.PNG", + "a beautiful broom in all it's glory" + }; + } public Employee lwang42() { return new Employee( "Lawrence Wang", diff --git a/images/products/broom.PNG b/images/products/broom.PNG new file mode 100644 index 0000000000000000000000000000000000000000..7c2db8e5447069592ee37ebd56c789a9eda29668 Binary files /dev/null and b/images/products/broom.PNG differ diff --git a/images/staff/broom.PNG b/images/staff/broom.PNG new file mode 100644 index 0000000000000000000000000000000000000000..7c2db8e5447069592ee37ebd56c789a9eda29668 Binary files /dev/null and b/images/staff/broom.PNG differ