From b53187d6e9c10169fe4aa5f73106c991d6dfebd5 Mon Sep 17 00:00:00 2001 From: Mehul Chaudhari <mehulc@cs.washington.edu> Date: Tue, 6 Feb 2024 18:49:37 -0800 Subject: [PATCH] Adding Staff and Products descriptions for mehulc. --- Products.java | 9 +++++++++ Staff.java | 9 +++++++++ 2 files changed, 18 insertions(+) diff --git a/Products.java b/Products.java index 455db3d..62bf8ba 100644 --- a/Products.java +++ b/Products.java @@ -10,6 +10,15 @@ public class Products { /* a good class, but not as good as cse391 */ 42.024 ); } + public Product mehulcsProduct() { + return new Product( + "Giant Gummy Bear", + "Big fatty tast gummy bear", + "gummybear.jpg", + "Picture of a beautiful gummy bear", + 10000.10 + ); + } public Product kevinsProduct(){ return new Product( "Basketball", diff --git a/Staff.java b/Staff.java index e510b8b..bd69fe4 100644 --- a/Staff.java +++ b/Staff.java @@ -7,6 +7,15 @@ public class Staff { "snorlax.png", "A snorlax sitting" ); + } + public Employee mehulc() { + return new Employee( + "Mehul Chaudhari", + "Student", + "Eating", + "snoopy.jpg", + "just snoopy." + ); } public Employee xckevin(){ return new Employee( -- GitLab