diff --git a/Products.java b/Products.java index 2387db9b8fe4e0840f8be63a037ce15243868660..d1fd437d29028a0856b1f849482ef4cc2dc57d39 100644 --- a/Products.java +++ b/Products.java @@ -412,6 +412,16 @@ public class Products { /* a good class, but not as good as cse391 */ } + public Product ryrozProduct() { + return new Product( + "A broken computer", + "A computer that has a static screen.", + "static.jpg", + "A picture of static", + 4.99 + ); + } + public Product yangsamProduct() { return new Product( "Chocolate chip cookies", diff --git a/Staff.java b/Staff.java index 617a58e09e13d76de00f9d5c7ae05050b6ab2c53..e18af91c0914eb811c971c381b65558dd1cab114 100644 --- a/Staff.java +++ b/Staff.java @@ -441,6 +441,26 @@ public class Staff { ); } + public Employee ryroz() { + return new Employee( + "Ryan", + "Student", + "tired", + "blackscreen.jpg", + "a black screen" + ); + } + + public Employee alimj5() { + return new Employee( + "Ali", + "Student", + "Tranquil", + "Anime_Chopper_Skypia.jpg", + "Chopper from One Piece looking surprised" + ); + } + public Employee yangsam() { return new Employee( "Samantha",