diff --git a/Products.java b/Products.java index 7d14413476022023198442a02bd44ac655890c7a..ecc12a661967bb2c45a08953ed5fdb529ad763dc 100644 --- a/Products.java +++ b/Products.java @@ -13,6 +13,16 @@ public class Products { /* a good class, but not as good as cse391 */ + public Product smayanProduct() { + return new Product( + "Dollar Bill", + "one dollar in cash", + "dollar_bill.jpg", + "Image of a one-dollar bill", + 1.00 + ); + } + public Product benoreProduct() { return new Product( "Taylor Swift - Folklore Vinyl", @@ -31,8 +41,19 @@ public class Products { /* a good class, but not as good as cse391 */ "Lazy egg", 1000.0 ); + } + public Product bohanz04Product() { + return new Product( + "CSE351 hw problem", + "A confusing problem faced", + "test2.jpg", + "image of that problem", + 1.00 + ); + } + public Product kevinh33Product() { return new Product( "Duolingo owl", @@ -807,6 +828,16 @@ public class Products { /* a good class, but not as good as cse391 */ ); } + public Product acuraIntegra() { + return new Product ( + "Acura Integra", + "Acura Integra", + "acura.jpg", + "Acura Integra", + 52400 + ); + } + public Product shangy24Product() { return new Product( "Windows 10 Pro", diff --git a/Staff.java b/Staff.java index d6cec753d332221f15a504750743a414eff3db85..f28893b3fcab3c55b2e33d556fcbfe48ed556b6d 100644 --- a/Staff.java +++ b/Staff.java @@ -1,6 +1,17 @@ public class Staff { + public Employee smayan(){ + return new Employee( + "Smayan Nirantare", + "CS Student", + "I'm hungry", + "travis_scott.jpg", + "Travis Scott" + ); + } + + public Employee boschen() { return new Employee( "Boshan Chen", @@ -29,6 +40,16 @@ public class Staff { } + public Employee bohanz04() { + return new Employee( + "Bryan Zhao", + "Student", + "abcdefg stuff", + "test1.jpg", + "hope to get internship" + ); + } + public Employee cuperido() { return new Employee( "Young You", @@ -827,13 +848,13 @@ public class Staff { ); } - public Employee shangy24() { - return new Employee( - "Shangzhen Yang", + public Employee kristong() { + return new Employee ( + "Kris", "Student", - "Hello, World!", - "your-name.jpg", - "Wallpaper of Movie Your Name" + "Hello", + "boy.jp", + "ðŸ™" ); } } diff --git a/images/products/acura.jpg b/images/products/acura.jpg new file mode 100644 index 0000000000000000000000000000000000000000..17502134e99794c51ee037b4d91b45fd2942bf85 Binary files /dev/null and b/images/products/acura.jpg differ diff --git a/images/products/dollar_bill.jpg b/images/products/dollar_bill.jpg new file mode 100644 index 0000000000000000000000000000000000000000..9e5a9ec1f6e39cce8382ff6d59536ac016aa52e2 Binary files /dev/null and b/images/products/dollar_bill.jpg differ diff --git a/images/products/test2.jpg b/images/products/test2.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20cdab1ea00dea217026843230381259fa42fa79 Binary files /dev/null and b/images/products/test2.jpg differ diff --git a/images/staff/boy.jpg b/images/staff/boy.jpg new file mode 100644 index 0000000000000000000000000000000000000000..265268e2ee4615dc07007592a793338d956fc2d8 Binary files /dev/null and b/images/staff/boy.jpg differ diff --git a/images/staff/test1.jpg b/images/staff/test1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..20cdab1ea00dea217026843230381259fa42fa79 Binary files /dev/null and b/images/staff/test1.jpg differ diff --git a/images/staff/travis_scott.jpg b/images/staff/travis_scott.jpg new file mode 100644 index 0000000000000000000000000000000000000000..3bc0dd8bb92a95cd9646fc7e2d4f2dfde442e269 Binary files /dev/null and b/images/staff/travis_scott.jpg differ