diff --git a/Products.java b/Products.java index 8cd76feecf57578ced684946ba8f0e81469677a4..32716e1fab0a03d3f00c9f6b6bd13176ec8167f0 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,6 +41,7 @@ public class Products { /* a good class, but not as good as cse391 */ "Lazy egg", 1000.0 ); + } public Product kevinh33Product() { @@ -814,6 +825,16 @@ public class Products { /* a good class, but not as good as cse391 */ "acura.jpg", "Acura Integra", 52400 + ); + } + + public Product shangy24Product() { + return new Product( + "Windows 10 Pro", + "An operating system made by Microsoft", + "win10.jpg", + "Windows 10 Default Wallpaper", + 199.99 ); } } diff --git a/Staff.java b/Staff.java index 8fcb8ab74d4ab6d5d900295ed51fdd7a4b3f7916..39b8c7dfa634f1355084ae86f5836513d54aa5f9 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,7 @@ public class Staff { } + public Employee cuperido() { return new Employee( "Young You", 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/win10.jpg b/images/products/win10.jpg new file mode 100644 index 0000000000000000000000000000000000000000..6d0698b8fcc5b4530228013e56543508e803ea78 Binary files /dev/null and b/images/products/win10.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 diff --git a/images/staff/your-name.jpg b/images/staff/your-name.jpg new file mode 100644 index 0000000000000000000000000000000000000000..8b25e1e4c366a016229604c8f51936e6a49b00ee Binary files /dev/null and b/images/staff/your-name.jpg differ