diff --git a/Products.java b/Products.java
index 03b38afa1f7664ad233bab55fa10146393985dfc..f81aa99c02ed9ec116ec645c3b02bd26a391a2ff 100644
--- a/Products.java
+++ b/Products.java
@@ -497,4 +497,14 @@ public class Products { /* a good class, but not as good as cse391 */
 		3.99
 	);
     }
+
+    public Product ccsekhar20Product() {
+	    return new Product(
+		"Coffee",
+		"Good coffee",
+		"coffee.jpeg",
+		"Picture of coffee",
+		4.99
+	);
+    }
 }
diff --git a/Staff.java b/Staff.java
index 39ac73d7f088d0eac9f62fd079d36b5d3073b21b..6296de3c79124dbef2a33895a833d0f086ed25c2 100644
--- a/Staff.java
+++ b/Staff.java
@@ -528,4 +528,14 @@ public class Staff {
             "Picture of a dog"
         );
     }
+
+    public Employee ccsekhar20() {
+	    return new Employee(
+		"Chaitanya",
+		"Student",
+		"On the grind",
+		"ocean.jpg",
+		"Picture of the ocean"
+	);
+    }
 }