Skip to content
Snippets Groups Projects
Commit 8fefff8a authored by William Gong's avatar William Gong
Browse files

Merge branch 'main' into 'wgong2_staff_page'

# Conflicts:
#   Products.java
#   Staff.java
parents 527f5432 397aaae9
No related branches found
No related tags found
2 merge requests!163commit for wgong2,!156Main
Pipeline #577223 failed with stage
in 1 second
/* check out these products! */ /* check out these products! */
public class Products { /* a good class, but not as good as cse391 */ public class Products { /* a good class, but not as good as cse391 */
public Product boschenProduct() {
return new Product(
"sleepCoke",
"It will help you a nice sleep",
"sleepCoke.jpg",
"really good, has sleepy coffine",
9.98
);
}
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() { public Product benoreProduct() {
return new Product( return new Product(
"Taylor Swift - Folklore Vinyl", "Taylor Swift - Folklore Vinyl",
...@@ -12,6 +33,27 @@ public class Products { /* a good class, but not as good as cse391 */ ...@@ -12,6 +33,27 @@ public class Products { /* a good class, but not as good as cse391 */
); );
} }
public Product ekimji1Product() {
return new Product(
"Gudetama",
"perfect",
"gudetama.jpg",
"Lazy egg",
1000.0
);
}
public Product bohanz04Product() {
return new Product(
"CSE351 hw problem",
"A confusing problem faced",
"test2.jpg",
"image of that problem",
1.00
);
}
public Product kevinh33Product() { public Product kevinh33Product() {
return new Product( return new Product(
"Duolingo owl", "Duolingo owl",
...@@ -787,4 +829,33 @@ public class Products { /* a good class, but not as good as cse391 */ ...@@ -787,4 +829,33 @@ public class Products { /* a good class, but not as good as cse391 */
); );
} }
public Product pranavntProduct() {
return new Product(
"Celsius Essentials 1000 pack",
"1000 pack of celsius essentials. will keep you awake.",
"celsius-picture.png",
"Celsius Essentials",
1000.0
);
}
public Product acuraIntegra() {
return new Product (
"Acura Integra",
"Acura Integra",
"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 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",
"Sleeper",
"Sleep and stare blankly",
"White.jpg",
"umm.."
);
}
public Employee ekimji() {
return new Employee(
"Esther",
"student",
"local point demon",
"gudetama.jpg",
"gudetama with balloon"
);
}
public Employee benore() { public Employee benore() {
return new Employee("Ben", return new Employee("Ben",
...@@ -8,6 +39,17 @@ public class Staff { ...@@ -8,6 +39,17 @@ public class Staff {
"Picture of Ben Oreizy"); "Picture of Ben Oreizy");
} }
public Employee bohanz04() {
return new Employee(
"Bryan Zhao",
"Student",
"abcdefg stuff",
"test1.jpg",
"hope to get internship"
);
}
public Employee cuperido() { public Employee cuperido() {
return new Employee( return new Employee(
"Young You", "Young You",
...@@ -809,4 +851,34 @@ public class Staff { ...@@ -809,4 +851,34 @@ public class Staff {
} }
} }
public Employee pranavnt() {
return new Employee(
"Pranav",
"Student",
"i like celsius",
"celsius-picture.png",
"celsius picture"
);
}
public Employee kristong() {
return new Employee (
"Kris",
"Student",
"Hello",
"boy.jp",
"🙏"
);
}
public Employee shangy24() {
return new Employee(
"Shangzhen Yang",
"Student",
"Hello, World!",
"your-name.jpg",
"Wallpaper of Movie Your Name"
);
}
}
images/products/acura.jpg

174 KiB

images/products/chocolate_ice_cream.jpg

11.6 KiB

images/products/dollar_bill.jpg

213 KiB

images/products/gudetama.jpg

67.1 KiB

images/products/sleepCoke.jpg

126 KiB

images/products/test2.jpg

218 KiB

images/products/win10.jpg

221 KiB

images/staff/White.jpg

961 B

images/staff/boy.jpg

24.9 KiB

images/staff/celsius-picture.png

375 KiB

images/staff/test1.jpg

218 KiB

images/staff/tired_dog.jpg

80 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