From 161cc7a3c67d049f35685324a6f8df301772a3d4 Mon Sep 17 00:00:00 2001 From: sjeyte <sjeyte@cs.washington.edu> Date: Mon, 12 Feb 2024 18:16:45 -0800 Subject: [PATCH] Finish adding Staff and Product. --- Products.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Products.java b/Products.java index e13132e..c3ccac3 100644 --- a/Products.java +++ b/Products.java @@ -606,5 +606,15 @@ public class Products { /* a good class, but not as good as cse391 */ "Picture of Intel Processor", 589.00 ); + } + + public Product sjeyteProduct() { + return new Product( + "AMD Ryzen 7 7800X3D", + "Best gaming chip currently!", + "7800x3d.jpeg", + "Picture of the AMD processor.", + 449.00 + ); } } -- GitLab