diff --git a/Products.java b/Products.java index 41753ff9eff839b5884caecd677d3e814f7b8759..023ea8083f78e8f71b4aa0220a8eaebf725d54fa 100644 --- a/Products.java +++ b/Products.java @@ -1,6 +1,29 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + + public Product boschenProduct() { + return new Product( + "sleepCoke", + "It will help you a nice sleep", + "sleepCoke.jpg", + "really good, has sleepy coffine", + 9.98 + ); + } + + + public Product benoreProduct() { + return new Product( + "Taylor Swift - Folklore Vinyl", + "A vinyl containing the deluxe edition of Taylor Swift's Grammy-winning FFolklore album.", + "folkloreac.png", + "The album cover for Taylor Swift's folklore album.", + 29.99 + ); + } + + public Product kevinh33Product() { return new Product( "Duolingo owl", diff --git a/Staff.java b/Staff.java index 6fa3ca658e472df3e29adcb708d45f0f26e96c6d..86303d63f1d0906f6a9916cd8ded6da8ed3c1b85 100644 --- a/Staff.java +++ b/Staff.java @@ -1,5 +1,25 @@ public class Staff { + + public Employee boschen() { + return new Employee( + "Boshan Chen", + "Sleeper", + "Sleep and stare blankly", + "White.jpg", + "umm.." + ); + } + + + public Employee benore() { + return new Employee("Ben", + "Student", + "Computer Science student", + "benore.jpg", + "Picture of Ben Oreizy"); + } + public Employee cuperido() { return new Employee( "Young You", diff --git a/images/products/folkloreac.png b/images/products/folkloreac.png new file mode 100644 index 0000000000000000000000000000000000000000..a697000ae5f54f2532f8a7a1d2b842e50ff86e56 Binary files /dev/null and b/images/products/folkloreac.png differ diff --git a/images/products/sleepCoke.jpg b/images/products/sleepCoke.jpg new file mode 100644 index 0000000000000000000000000000000000000000..d5d63588eaae1e81df9d51c6f3bcf63ce5ac7cbf Binary files /dev/null and b/images/products/sleepCoke.jpg differ diff --git a/images/staff/White.jpg b/images/staff/White.jpg new file mode 100644 index 0000000000000000000000000000000000000000..02311af9a72dfe8655879816d283bafbd0aa2dad Binary files /dev/null and b/images/staff/White.jpg differ diff --git a/images/staff/benore.jpg b/images/staff/benore.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a933942218a92ea43bd1d8075f97957d9fbc0272 Binary files /dev/null and b/images/staff/benore.jpg differ