Skip to content
Snippets Groups Projects
Commit 14330688 authored by Boshan Chen's avatar Boshan Chen
Browse files

Merge branch 'main' into 'boschen_staff_page'

# Conflicts:
#   Products.java
#   Staff.java
parents 7e70b2bc 47388480
Branches boschen_staff_page
No related tags found
2 merge requests!150Main,!144boschen
Pipeline #577162 passed with stage
in 2 seconds
File added
/* check out these products! */
public class Products { /* a good class, but not as good as cse391 */
public Product boschenProduct() {
return new Product(
"sleepCoke",
......@@ -9,6 +10,20 @@ public class Products { /* a good class, but not as good as cse391 */
9.98
);
}
public Product benoreProduct() {
return new Product(
"Taylor Swift - Folklore Vinyl",
"A vinyl containing the deluxe edition of Taylor Swift's Grammy-winning FFolklore album.",
"folkloreac.png",
"The album cover for Taylor Swift's folklore album.",
29.99
);
}
public Product kevinh33Product() {
return new Product(
"Duolingo owl",
......@@ -79,6 +94,16 @@ public class Products { /* a good class, but not as good as cse391 */
);
}
public Product akshitasProduct() {
return new Product(
"Lake",
"Pretty lake by the mountains",
"Lake.jpg",
"Image of a snowy lake with moutains in the background",
5.99
);
}
public Product kevluoyrsProduct() {
return new Product(
"Blindr",
......@@ -669,6 +694,16 @@ public class Products { /* a good class, but not as good as cse391 */
"Picture of Intel Processor",
589.00
);
}
public Product sjeyteProduct() {
return new Product(
"AMD Ryzen 7 7800X3D",
"Best gaming chip currently!",
"7800x3d.jpeg",
"Picture of the AMD processor.",
449.00
);
}
......@@ -743,4 +778,14 @@ public class Products { /* a good class, but not as good as cse391 */
);
}
public Product tonywuProduct() {
return new Product(
"Giant Tree",
"Giant Tree, kind of looks weird. Price won't cause floating point error.",
"Tree.webp",
"Big Tree",
15000000000000000000000000000000000000000000001.00
);
}
}
public class Staff {
public Employee boschen() {
return new Employee(
"Boshan Chen",
......@@ -8,6 +9,17 @@ public class Staff {
"umm.."
);
}
public Employee benore() {
return new Employee("Ben",
"Student",
"Computer Science student",
"benore.jpg",
"Picture of Ben Oreizy");
}
public Employee cuperido() {
return new Employee(
"Young You",
......@@ -221,7 +233,16 @@ public class Staff {
"Alpaca with dandelion hair"
);
}
public Employee akshiam() {
return new Employee(
"Akshita",
"Student",
"Learning",
"MountainSunset.jpg",
"Husky Winter Sports members watching the sunset on a mountain"
);
}
public Employee pbui27() {
return new Employee(
"Peter",
......@@ -701,6 +722,16 @@ public class Staff {
);
}
public Employee sjeyte() {
return new Employee(
"Sulyman",
"Student",
"Academic comeback season!",
"lebron.jpeg",
"Picture of LeBron down 3-1 in the Finals."
);
}
public Employee ggsmadhu(){
return new Employee(
"Madhumitha",
......@@ -768,5 +799,14 @@ public class Staff {
"Hello Kitty"
);
}
public Employee tonywu() {
return new Employee(
"Tony",
"Student",
"Student in CSE",
"NormanRockwell.jpg",
"Norman Rockwell Self-Portrait"
);
}
}
images/products/7800x3d.jpeg

3.56 KiB

images/products/Lake.jpg

540 KiB

images/products/Tree.webp

197 KiB

images/products/folkloreac.png

79.4 KiB

images/products/meowchi.jpeg

218 KiB

images/staff/MountainSunset.jpg

371 KiB

images/staff/NormanRockwell.jpg

20.5 KiB

images/staff/animegeek.jpeg

38.5 KiB

images/staff/benore.jpg

175 KiB

images/staff/gudetama.jpg

67.1 KiB

images/staff/lebron.jpeg

32.3 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