diff --git a/Products.java b/Products.java index 7fb0f2f8b346e5829fc68a6120e29516f471b270..b55b8e5b2817833d0507bd42f26b3ffa2508a590 100644 --- a/Products.java +++ b/Products.java @@ -1,5 +1,15 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + + public Product yverma23sProduct() { + return new Product( + "Lebron 2's", + "Nike basketball shoes", + "Lebron2.png", + "Image of black and white nikes", + 105.97 + ); + } public Product joshjyinProduct() { return new Product( "Dub Hub", diff --git a/Staff.java b/Staff.java index 76fa6b75515f6405feb2bb7364ad531b0e6ed110..717eb96ca37321e45ced27e68e839b8b0444bb12 100644 --- a/Staff.java +++ b/Staff.java @@ -1,4 +1,13 @@ public class Staff { + public Employee yverma23() { + return new Employee( + "Yash Verma", + "Baller", + "Sleep deprived", + "LebronJamesMeme.jpg", + "Lebron Meme" + ); + } public Employee joshjyin() { return new Employee( "Joshua Yin", diff --git a/images/products/Lebron2.png b/images/products/Lebron2.png new file mode 100644 index 0000000000000000000000000000000000000000..d627c4870e9567308e9a050a2f1d84437e7d240a Binary files /dev/null and b/images/products/Lebron2.png differ diff --git a/images/staff/LebronJamesMeme.jpg b/images/staff/LebronJamesMeme.jpg new file mode 100644 index 0000000000000000000000000000000000000000..a2b274cebeb3d41a5130337d578ac1e27247e031 Binary files /dev/null and b/images/staff/LebronJamesMeme.jpg differ