diff --git a/Products.java b/Products.java index 91763b30d8f21c7fec98f94116d6a1a7dc2fb0b9..f0b6a6620bcea926d1676f281cf0711f32a29f7a 100644 --- a/Products.java +++ b/Products.java @@ -98,4 +98,14 @@ public class Products { /* a good class, but not as good as cse391 */ 1.01 ); } + + public Product tanjalsProduct() { + return new Product( + "Creatine", + "Big muscle", + "creatine.jpg", + "Number 1 lifting supplement", + 39.95 + ); + } } diff --git a/Staff.java b/Staff.java index 874f89ad32e96dc859f0741000e2c3190e2986b5..f18da01d9e03938182edecb7e97699c23a61451a 100644 --- a/Staff.java +++ b/Staff.java @@ -117,4 +117,14 @@ public class Staff { "funny chicken" ); } + + public Employee tshukl() { + return new Employee( + "Tanjal", + "Student", + "Cries", + "redpanda.jpg", + "A special panda" + ); + } } diff --git a/images/products/creatine.jpg b/images/products/creatine.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ad79ce9e05bbe6e46f55d6a16ded46f8a5bd96ac Binary files /dev/null and b/images/products/creatine.jpg differ diff --git a/images/staff/redpanda.jpg b/images/staff/redpanda.jpg new file mode 100644 index 0000000000000000000000000000000000000000..fc81d6f92b7e7d7e4317c8150b18ec620e7e9363 Binary files /dev/null and b/images/staff/redpanda.jpg differ