Skip to content
Snippets Groups Projects
Commit 841d2c42 authored by Manav Balakrishnan's avatar Manav Balakrishnan
Browse files

Merge branch 'main' into 'mbalak_staff_page'

# Conflicts:
#   Products.java
parents 287a3ec4 bc477244
No related branches found
No related tags found
1 merge request!92Manav's bio and product
Pipeline #576794 passed with stage
in 2 seconds
......@@ -505,6 +505,35 @@ public class Products { /* a good class, but not as good as cse391 */
"BigMac.jpeg",
"image of Big Mac",
5
);
}
public Product ccsekhar20Product() {
return new Product(
"Coffee",
"Good coffee",
"coffee.jpeg",
"Picture of coffee",
4.99
);
}
public Product samsharProduct() {
return new Product(
"Spray Ketchup",
"Ketchup that you can spray on",
"ketchup.jpg",
"Example image of spray on ketchup",
4.99
);
}
public Product SprayKetchup() {
return new Product(
"SprayKetchup",
"Spray on Ketchup",
"ketchup.jpg",
"An image of what a spray on ketchup bottle would look like",
5.99
);
}
}
......@@ -538,4 +538,24 @@ public class Staff {
"Picture of a dog"
);
}
public Employee ccsekhar20() {
return new Employee(
"Chaitanya",
"Student",
"On the grind",
"ocean.jpg",
"Picture of the ocean"
);
}
public Employee samshar() {
return new Employee(
"Sami",
"Student",
"Working hard",
"picture.jpg",
"Picture of women playing volleyball"
);
}
}
images/products/coffee.jpeg

1.05 MiB

images/products/ketchup.jpg

21 KiB

images/products/picture.jpg

77.2 KiB

images/staff/ketchup.jpg

21 KiB

images/staff/ocean.jpg

2.15 MiB

images/staff/picture.jpg

77.2 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