Skip to content
Snippets Groups Projects
Commit cbb6deca authored by Kris Tong's avatar Kris Tong
Browse files

Merge branch 'main' into 'kristong_staff_page'

# Conflicts:
#   Products.java
parents ca951ddf 8dd8b62c
No related branches found
No related tags found
2 merge requests!161Kris staff and product,!156Main
Pipeline #577212 passed with stage
in 2 seconds
......@@ -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
);
}
}
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",
......
images/products/dollar_bill.jpg

213 KiB

images/products/win10.jpg

221 KiB

images/staff/travis_scott.jpg

9.26 KiB

images/staff/your-name.jpg

672 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