diff --git a/Products.java b/Products.java index 002302bb994c7178a6f290088404943031c07aa2..8eb7338c210a64eb2455302d4ff9ed6a08056b73 100644 --- a/Products.java +++ b/Products.java @@ -287,5 +287,13 @@ public class Products { /* a good class, but not as good as cse391 */ 0 ); } - + public Product tyzhou05Product() { + return new Product( + "Sushi Bake!", + "Delicious sushi pizza made in my dorm (real)", + "sushibake.jpg", + "Stack image of seaweed, rice, and deliciousness", + 15 + ); + } } diff --git a/Staff.java b/Staff.java index 7376c35b08fb420c789a81ca4f1dc44a91b9454b..37d5df58227fff18b7adda782cfbb71626a09184 100644 --- a/Staff.java +++ b/Staff.java @@ -1,4 +1,5 @@ public class Staff { + public Employee evanlou() { return new Employee( "Evan Lou", @@ -307,5 +308,13 @@ public class Staff { "I spent hours to figure out how to connect vscode with ece linux and then failed..." ); } - + public Employee tyzhou05() { + return new Employee( + "Tony", + "Student", + "I work at Crags in the IMA! Come say hi on Friday nights :)", + "tonyclimbing.jpg", + "Me climbing last May at my high school" + ); + } }