diff --git a/Products.java b/Products.java index f67208755795e24e1e63d631d33731e9ff47f921..072aebb483654c006f3431d81dde7b5cadbdd196 100644 --- a/Products.java +++ b/Products.java @@ -505,6 +505,35 @@ public class Products { /* a good class, but not as good as cse391 */ "BigMac.jpeg", "image of Big Mac", 5 + ); + } + + public Product ccsekhar20Product() { + return new Product( + "Coffee", + "Good coffee", + "coffee.jpeg", + "Picture of coffee", + 4.99 + ); + } + + public Product samsharProduct() { + return new Product( + "Spray Ketchup", + "Ketchup that you can spray on", + "ketchup.jpg", + "Example image of spray on ketchup", + 4.99 + ); + } + public Product SprayKetchup() { + return new Product( + "SprayKetchup", + "Spray on Ketchup", + "ketchup.jpg", + "An image of what a spray on ketchup bottle would look like", + 5.99 ); } } diff --git a/Staff.java b/Staff.java index e811f0e61730efd88a35a8f9e4954a1993495ce9..17122297e8f289368b81dd6d6d35e976d8528b45 100644 --- a/Staff.java +++ b/Staff.java @@ -538,4 +538,24 @@ public class Staff { "Picture of a dog" ); } + + public Employee ccsekhar20() { + return new Employee( + "Chaitanya", + "Student", + "On the grind", + "ocean.jpg", + "Picture of the ocean" + ); + } + + public Employee samshar() { + return new Employee( + "Sami", + "Student", + "Working hard", + "picture.jpg", + "Picture of women playing volleyball" + ); + } } diff --git a/images/products/coffee.jpeg b/images/products/coffee.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..9af5b1ecf875e0c8a0431ad54b5463bdbd27304f Binary files /dev/null and b/images/products/coffee.jpeg differ diff --git a/images/products/ketchup.jpg b/images/products/ketchup.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f727096dcaaedb13e31d75f909018564a69bc9cf Binary files /dev/null and b/images/products/ketchup.jpg differ diff --git a/images/products/picture.jpg b/images/products/picture.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55786d94bb6545820ab8b61b038eae37ee5a8d9c Binary files /dev/null and b/images/products/picture.jpg differ diff --git a/images/staff/ketchup.jpg b/images/staff/ketchup.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f727096dcaaedb13e31d75f909018564a69bc9cf Binary files /dev/null and b/images/staff/ketchup.jpg differ diff --git a/images/staff/ocean.jpg b/images/staff/ocean.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c11542308c6614b415c33600304c56664e4d158c Binary files /dev/null and b/images/staff/ocean.jpg differ diff --git a/images/staff/picture.jpg b/images/staff/picture.jpg new file mode 100644 index 0000000000000000000000000000000000000000..55786d94bb6545820ab8b61b038eae37ee5a8d9c Binary files /dev/null and b/images/staff/picture.jpg differ