diff --git a/Products.java b/Products.java index 20ed63bddf958433b6413997884b23bda3950816..b28fd03e3b5dffd6021c0aff4a791e0bf2281e11 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 ctsai7Product() { + return new Product( + "G. Loomis GLX Casting Rod", + "Fishing rod", + "g_loomis_glx.jpg", + "A g.loomis casting rod", + 460.00 + ); + } public Product yverma23sProduct() { return new Product( "Lebron 2's", diff --git a/Staff.java b/Staff.java index 78830ba9e2a490a257ffe76534b4878e4a779231..d65f1c25bb25930f6deb934402b9e87479ee0775 100644 --- a/Staff.java +++ b/Staff.java @@ -1,4 +1,15 @@ public class Staff { + + public Employee ctsai7() { + return new Employee( + "Calvin Tsai", + "Student", + "excited", + "smallmouth_bass.jpg", + "a fish I like to catch" + ); + } + public Employee yverma23() { return new Employee( "Yash Verma",