diff --git a/Products.java b/Products.java index f81aa99c02ed9ec116ec645c3b02bd26a391a2ff..8272a5d6cf22749d4000aba5f6e7883138e7d8d0 100644 --- a/Products.java +++ b/Products.java @@ -507,4 +507,14 @@ public class Products { /* a good class, but not as good as cse391 */ 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 + ); + } } diff --git a/Staff.java b/Staff.java index 6296de3c79124dbef2a33895a833d0f086ed25c2..bc20f125dd411b0ac0a5c907003abd95c45015b0 100644 --- a/Staff.java +++ b/Staff.java @@ -538,4 +538,14 @@ public class Staff { "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/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/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