diff --git a/Products.java b/Products.java index 14f91cc8b9a1166ed74023d620937bc614db0038..09d4832c2550f503e1ead450f785fa6912a4e68e 100644 --- a/Products.java +++ b/Products.java @@ -1,6 +1,17 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + + 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 975f451390491e1c5168e08344a23af181c64413..7ebc9e8153b2222037ccf5a1c1c368906e042aa2 100644 --- a/Staff.java +++ b/Staff.java @@ -1,5 +1,13 @@ public class Staff { + 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/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