diff --git a/Products.java b/Products.java index 82850127ba9f89fbe130af0e9c90f7fefa3ff1f9..237d2933099af071f2b048abd3c68cc01edc675d 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 tanjalsProduct() { + return new Product( + "Creatine", + "Big muscle", + "creatine.jpg", + "Number 1 lifting supplement", + 39.95 + ); + } + public Product keshavsProduct() { return new Product( "Dirt", @@ -130,7 +140,6 @@ public class Products { /* a good class, but not as good as cse391 */ ); } - public Product yixuan19Product(){ return new Product ( "Goomba", @@ -140,6 +149,7 @@ public class Products { /* a good class, but not as good as cse391 */ 114514.0 ); } + public Product swangsamProduct(){ return new Product( "Pullup Bar", diff --git a/Staff.java b/Staff.java index 570aa6427106100fec2ece8b8a832133f1f9aeae..b0257a93520af2fc8ca93e0501485aebc96b989c 100644 --- a/Staff.java +++ b/Staff.java @@ -128,6 +128,15 @@ public class Staff { ); } + public Employee tshukl() { + return new Employee( + "Tanjal", + "Student", + "Cries", + "redpanda.jpg", + "A special panda" + ); + } public Employee kesach() { return new Employee( 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