Skip to content
Snippets Groups Projects
Commit e399a637 authored by Sierra Yee's avatar Sierra Yee
Browse files

Added staff and products as well as images for each

parent 6154a4b8
No related branches found
No related tags found
1 merge request!128Adding Sierra's employee and product
Pipeline #577043 failed
...@@ -380,6 +380,16 @@ public class Products { /* a good class, but not as good as cse391 */ ...@@ -380,6 +380,16 @@ public class Products { /* a good class, but not as good as cse391 */
); );
} }
public Product siyeeProduct() {
return new Product(
"Tulips",
"Some pretty flowers to make you happier!",
"tulips.jpg",
"Pink, yellow, purple, and orange tulip flowers in a garden.",
49.99
);
}
public Product lq22Product() { public Product lq22Product() {
return new Product( return new Product(
"Large Fries", "Large Fries",
......
...@@ -397,6 +397,16 @@ public class Staff { ...@@ -397,6 +397,16 @@ public class Staff {
); );
} }
public Employee siyee() {
return new Employee(
"Sierra",
"Student",
"I love plushies",
"Bear.jpg",
"Brown bear with hearts"
);
}
public Employee lq22() { public Employee lq22() {
return new Employee( return new Employee(
"Audrey", "Audrey",
......
images/products/tulips.jpg

119 KiB

images/staff/Bear.jpg

16.8 KiB

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment