diff --git a/Products.java b/Products.java index 32716e1fab0a03d3f00c9f6b6bd13176ec8167f0..ecc12a661967bb2c45a08953ed5fdb529ad763dc 100644 --- a/Products.java +++ b/Products.java @@ -44,6 +44,16 @@ public class Products { /* a good class, but not as good as cse391 */ } + public Product bohanz04Product() { + return new Product( + "CSE351 hw problem", + "A confusing problem faced", + "test2.jpg", + "image of that problem", + 1.00 + ); + } + public Product kevinh33Product() { return new Product( "Duolingo owl", diff --git a/Staff.java b/Staff.java index 39b8c7dfa634f1355084ae86f5836513d54aa5f9..f28893b3fcab3c55b2e33d556fcbfe48ed556b6d 100644 --- a/Staff.java +++ b/Staff.java @@ -40,6 +40,15 @@ public class Staff { } + public Employee bohanz04() { + return new Employee( + "Bryan Zhao", + "Student", + "abcdefg stuff", + "test1.jpg", + "hope to get internship" + ); + } public Employee cuperido() { return new Employee( diff --git a/images/products/test2.jpg b/images/products/test2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20cdab1ea00dea217026843230381259fa42fa79 Binary files /dev/null and b/images/products/test2.jpg differ diff --git a/images/staff/test1.jpg b/images/staff/test1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20cdab1ea00dea217026843230381259fa42fa79 Binary files /dev/null and b/images/staff/test1.jpg differ