diff --git a/Products.java b/Products.java index f02d9918c54fe6c70653fe4b14ae613ef249a8da..99e08174dc31aaedbc5ad42c3430295a90966501 100644 --- a/Products.java +++ b/Products.java @@ -19,4 +19,14 @@ public class Products { /* a good class, but not as good as cse391 */ 0.0 ); } + + public Product iansProduct() { + return new Product( + "Pasta", + "Very nutritious", + "pasta.jpg", + "Bowl of pasta", + 100.0 + ); + } } diff --git a/Staff.java b/Staff.java index a8ac5f0c1810e5f636a6e9ec12b1e719bb395841..8e61d2fadf56ea058ea280775a4326e444e1caba 100644 --- a/Staff.java +++ b/Staff.java @@ -29,4 +29,14 @@ public class Staff { "My favorite plushie void the demodog chillin on the floor" ); } + + public Employee idelong() { + return new Employee( + "Ian", + "Bug Creator", + "Makes lots of bugs", + "alpaca.jpg", + "Alpaca with dandelion hair" + ); + } } diff --git a/images/products/pasta.jpg b/images/products/pasta.jpg new file mode 100644 index 0000000000000000000000000000000000000000..cd0e027f68171a07169bd0c53ef4e6857311372f Binary files /dev/null and b/images/products/pasta.jpg differ diff --git a/images/staff/alpaca.jpg b/images/staff/alpaca.jpg new file mode 100644 index 0000000000000000000000000000000000000000..ca7f0f2f1236491618ebd0dbd88838d877907a65 Binary files /dev/null and b/images/staff/alpaca.jpg differ