diff --git a/Products.java b/Products.java index 227d6c2655e0c054816cc7e2b2f6825459e2c5f4..3b3a3f6c2289a83e220bb484ab0e71832fa67314 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 1a2f2a39c9476c85a1d2290968a587fe61aee089..b866db7be81944e52e06d3307368f7404431d36c 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( @@ -838,5 +847,6 @@ public class Staff { "celsius picture" ); } + } 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