diff --git a/Products.java b/Products.java index 6cc34c0cfd5771a37f3de2ab0ac95fe8189360a6..3caae963152509c093bb4b0b4d21e42a8bbc3033 100644 --- a/Products.java +++ b/Products.java @@ -628,5 +628,17 @@ public class Products { /* a good class, but not as good as cse391 */ "A porche 911", 114000.00 ); + + } + + public Product sgodse() { + + return new Product( + "Lindt Chocolate", + "Rich, tasty chocolate", + "lindt.jpg", + "Picture of a lindt milk chocolate package", + 2.00 + ); } } diff --git a/Staff.java b/Staff.java index bec50f6ffb46a5a1eee404efc531dfeac7f48e1d..b956d70349b85cd4c46fb922e1403965a1d661cf 100644 --- a/Staff.java +++ b/Staff.java @@ -1,4 +1,4 @@ -public class Staff { +class Staff { public Employee ctsai7() { return new Employee( @@ -662,5 +662,15 @@ public class Staff { "nah id win" ); } + + public Employee sgodse() { + return new Employee( + "Shivani", + "Student", + "CS Student", + "coffee.jpg", + "picture of a coffee" + ); + } } diff --git a/images/products/lindt.jpg b/images/products/lindt.jpg new file mode 100644 index 0000000000000000000000000000000000000000..4a5cb00e859a87b10006a2704298dae49245fb92 Binary files /dev/null and b/images/products/lindt.jpg differ diff --git a/images/staff/coffee.jpg b/images/staff/coffee.jpg new file mode 100644 index 0000000000000000000000000000000000000000..891a302f71ff91c7c248257b2c3b68b887b82bfd Binary files /dev/null and b/images/staff/coffee.jpg differ