diff --git a/Products.java b/Products.java index 91763b30d8f21c7fec98f94116d6a1a7dc2fb0b9..9167178ecaf5223a1c04f90164630e2c07f274c7 100644 --- a/Products.java +++ b/Products.java @@ -1,5 +1,6 @@ /* check out these products! */ public class Products { /* a good class, but not as good as cse391 */ + public Product rairai77sProudct() { return new Product( "Cheeto Dust", @@ -9,6 +10,16 @@ public class Products { /* a good class, but not as good as cse391 */ 42.024 ); } + public Product kevinsProduct(){ + return new Product( + "Basketball", + "Bouncy bouncy orange ball", + "basketball.jpg", + "Picture of a basketball", + 42.0 + ); + } + public Product joshsProduct() { return new Product( "Dirt", diff --git a/Staff.java b/Staff.java index 874f89ad32e96dc859f0741000e2c3190e2986b5..0b01758a5b7e77ea116c7c173055e1fd26e4e8cc 100644 --- a/Staff.java +++ b/Staff.java @@ -8,6 +8,16 @@ public class Staff { "A snorlax sitting" ); } + public Employee xckevin(){ + return new Employee( + "Kevin", + "Bro", + "chill dude", + "kevin.jpg", + "Photo" + ); + } + public Employee faangPup() { return new Employee( "Steve", diff --git a/images/products/basketball.jpg b/images/products/basketball.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17ea901ee0e49cb8308c300579eeddb4bd76b915 Binary files /dev/null and b/images/products/basketball.jpg differ diff --git a/images/staff/kevin.jpg b/images/staff/kevin.jpg new file mode 100755 index 0000000000000000000000000000000000000000..4efe5aa77783558a609ad2db33e17db2a916fc1d Binary files /dev/null and b/images/staff/kevin.jpg differ