diff --git a/Products.java b/Products.java index beef4671956f7dc203e489a22bf3611f8af42008..9953744e211413fad3c1afcd699d21784bad792c 100644 --- a/Products.java +++ b/Products.java @@ -451,4 +451,12 @@ public class Products { /* a good class, but not as good as cse391 */ 159.99 ); } -} + public Product drose4Product() { + return new Product( + "Trader Joes Chicken Fried Rice", + "The best frozen fried rice on earth", + "friedrice.jpg", + "Image of trader joes chicken fried rice package", + 3.99 + ); +}} diff --git a/Staff.java b/Staff.java index 1c53b7efc158ecd7ea8a5e15eac2cc18090a8cc1..0f251e81281f0288c6ed74e3eaf2892624d7092a 100644 --- a/Staff.java +++ b/Staff.java @@ -482,4 +482,13 @@ public class Staff { "international student lebron james from tiktok" ); } + public Employee drose4() { + return new Employee( + "Dylan", + "Student", + "Semi pro Uno player", + "dog.jpeg", + "Picture of a dog" + ); + } } diff --git a/images/staff/dog.jpg b/images/staff/dog.jpg new file mode 100644 index 0000000000000000000000000000000000000000..718e5b841cac40ac4ebe67556a424d16bbe1cc34 Binary files /dev/null and b/images/staff/dog.jpg differ