Skip to content
Snippets Groups Projects
Commit ef933705 authored by Ian Delong's avatar Ian Delong
Browse files

Merge branch 'idelong_staff_page' into 'main'

feat: added new product and staff member

See merge request !4
parents bd346d94 d76fc90d
No related branches found
No related tags found
1 merge request!4feat: added new product and staff member
Pipeline #576029 passed
......@@ -20,6 +20,16 @@ public class Products { /* a good class, but not as good as cse391 */
);
}
public Product iansProduct() {
return new Product(
"Pasta",
"Very nutritious",
"pasta.jpg",
"Bowl of pasta",
100.0
);
}
public Product aryasProduct() {
return new Product(
"Monkey",
......
......@@ -29,6 +29,16 @@ 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"
);
}
public Employee agummadi() {
return new Employee(
......
images/products/pasta.jpg

35.2 KiB

images/staff/alpaca.jpg

50.4 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