diff --git a/Products.java b/Products.java index d1fd437d29028a0856b1f849482ef4cc2dc57d39..fafb97e7eb7aa01abd93d05d0040ffb6cbc25195 100644 --- a/Products.java +++ b/Products.java @@ -1,6 +1,15 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ - + + public Product davyhyunProduct() { + return new Product( + "Protein Powder", + "Protein Powder to make you huge", + "ProteinPowder.jpg", + "Image of our Protein Powder product", + 23.97 + ); + } public Product yverma23sProduct() { return new Product( "Lebron 2's", diff --git a/Staff.java b/Staff.java index e18af91c0914eb811c971c381b65558dd1cab114..944b4a6663ec2f610e49dc68499cc04f006e463c 100644 --- a/Staff.java +++ b/Staff.java @@ -1,4 +1,16 @@ public class Staff { + + public Employee davyhyun() { + return new Employee( + "David Hyun", + "The GOAT", + "Currenty Cookin", + "GordonRamsey.jpg", + "Gordon Ramsey Cooking" + ); + } + + public Employee yverma23() { return new Employee( "Yash Verma", diff --git a/images/products/ProteinPowder.jpg b/images/products/ProteinPowder.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8063649fd06fe2aa9ff98e71807774dfdab4981a Binary files /dev/null and b/images/products/ProteinPowder.jpg differ diff --git a/images/staff/GordonRamsey.jpg b/images/staff/GordonRamsey.jpg new file mode 100644 index 0000000000000000000000000000000000000000..590234cbe695904b6165b4289acf0b73610eee5b Binary files /dev/null and b/images/staff/GordonRamsey.jpg differ