diff --git a/Products.java b/Products.java index 5d72f57d10240a6069530b68b4cee53d2b3a41e1..c86639091e09db447f630dda54f01c491bb1f915 100644 --- a/Products.java +++ b/Products.java @@ -110,6 +110,16 @@ public class Products { /* a good class, but not as good as cse391 */ ); } + public Product dhvbnlProduct() { + return new Product ( + "proteen", + "gets you jacked", + "proteen.jpg", + "image of proteen powder", + 9.99 + ); + } + public Product yixuan19Product(){ return new Product ( "Goomba", diff --git a/Staff.java b/Staff.java index d0fbd83cc474dd1dfca351b14d040aac72f85ea1..9a5fff8877e9d4e4fef92553f0d0bb4b654c8796 100644 --- a/Staff.java +++ b/Staff.java @@ -128,6 +128,15 @@ public class Staff { ); } + public Employee dhvbnl() { + return new Employee ( + "Dhruv", + "tech student", + "breaking things that work, making things that break", + "dhvbnl.jpg", + "pillow representing dhruv" + ); + } public Employee yixuan19() { return new Employee ( diff --git a/images/products/proteen.jpg b/images/products/proteen.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ed8b540897e01d590bbf01cf36ec5bf2ec50f0b2 Binary files /dev/null and b/images/products/proteen.jpg differ diff --git a/images/staff/dhvbnl.jpg b/images/staff/dhvbnl.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6992a794b2be87cb7a33e8712ffc79e763674f40 Binary files /dev/null and b/images/staff/dhvbnl.jpg differ