diff --git a/Products.java b/Products.java index f7449dc88bc5d7145412f02ddb14a7080f8adaab..3bbd56649b5149fb520eb3a52d6406b4a969efb7 100644 --- a/Products.java +++ b/Products.java @@ -59,4 +59,14 @@ public class Products { /* a good class, but not as good as cse391 */ 10000 ); } + + public Product manavProduct() { + return new Product( + "Big Mac", + "McDonald's Big Mac", + "BigMac.jpeg", + "image of Big Mac", + 5 + ); + } } diff --git a/Staff.java b/Staff.java index c2ebdf52f75f4116d33090b8f67e706a3575259e..29d9c4b58b42efc954c59107e49b560369605a0f 100644 --- a/Staff.java +++ b/Staff.java @@ -69,4 +69,14 @@ public class Staff { "panda icon" ); } + + public Employee mbalak() { + return new Employee( + "Manav", + "Student", + "Studies", + "LongLiveASAP.jpeg", + "Long.Live.A$AP by A$AP Rocky" + ); + } } diff --git a/images/products/BigMac.jpeg b/images/products/BigMac.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..69fb5ff0f36b796d5b26a27bf0e96b7683715282 Binary files /dev/null and b/images/products/BigMac.jpeg differ diff --git a/images/staff/LongLiveASAP.jpeg b/images/staff/LongLiveASAP.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..66f564aea35256b8ac2f2418088b9a5deaa5b03b Binary files /dev/null and b/images/staff/LongLiveASAP.jpeg differ