diff --git a/Products.java b/Products.java index c4152a0ecc112d2c7d666569621afbfdec633061..80811c30812e43446dff61dd954b1acf80006bf5 100644 --- a/Products.java +++ b/Products.java @@ -662,6 +662,16 @@ public class Products { /* a good class, but not as good as cse391 */ "lindt.jpg", "Picture of a lindt milk chocolate package", 2.00 + ); + } + + public Product sprofit() { + return new Product( + "Baseball Glove", + "Premium leather baseball glove", + "BaseballGlove.jpeg", + "Picture of a Rawlings baseball glove", + 399.99 ); } } diff --git a/Staff.java b/Staff.java index 7613c7b8d648fa819be00d3a7c1f36fa519bd53a..f62aefe79da75c400c29f3982f40e5501b6fa504 100644 --- a/Staff.java +++ b/Staff.java @@ -692,5 +692,15 @@ public class Staff { "picture of a coffee" ); } + + public Employee sprofit() { + return new Employee( + "Sam", + "Student", + "EE Student", + "TimLIncecum.jpeg", + "Picture of my favorite pitcher" + ); + } } diff --git a/images/products/BaseballGlove.jpeg b/images/products/BaseballGlove.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..26ce9b5301f71cb54d02a16c5c4dc131b3b86ff3 Binary files /dev/null and b/images/products/BaseballGlove.jpeg differ diff --git a/images/staff/TimLIncecum.jpeg b/images/staff/TimLIncecum.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..58391c3f6177c08484e2506783e2313377461c41 Binary files /dev/null and b/images/staff/TimLIncecum.jpeg differ