From 642739b62fdbeb594d215d145e950b9be4be1d23 Mon Sep 17 00:00:00 2001
From: "T. Zhou" <tyzhou05@vergil21.u.washington.edu>
Date: Wed, 7 Feb 2024 16:36:32 -0800
Subject: [PATCH] added staff bio and products

---
 Products.java | 10 +++++++++-
 Staff.java    | 11 ++++++++++-
 2 files changed, 19 insertions(+), 2 deletions(-)

diff --git a/Products.java b/Products.java
index 002302b..8eb7338 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 7376c35..37d5df5 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"
+        );
+    } 
 }	
-- 
GitLab