Skip to content
Snippets Groups Projects
Commit 60fedba4 authored by Shivani Godse's avatar Shivani Godse
Browse files

Merge remote-tracking branch 'origin/main' into sgodse_staff_page

parents 89c7f736 f98d2a12
No related branches found
No related tags found
1 merge request!114Pushing files for new employee
Pipeline #576952 passed
/* check out these products! */
public class Products { /* a good class, but not as good as cse391 */
public Product kevinh33Product() {
return new Product(
"Duolingo owl",
"He's super angry",
"duo_angry.jpg",
"His anger levels rising",
150.00
);
}
public Product cuperidoProduct() {
return new Product(
"Pillow",
"Pillow to make you sleep better",
"pillow.jpg",
"Image of the pillow",
19.99
);
}
public Product ctsai7Product() {
return new Product(
"G. Loomis GLX Casting Rod",
......@@ -30,6 +50,7 @@ public class Products { /* a good class, but not as good as cse391 */
105.97
);
}
public Product joshjyinProduct() {
return new Product(
"Dub Hub",
......@@ -39,6 +60,7 @@ public class Products { /* a good class, but not as good as cse391 */
99999999999.99
);
}
public Product kevluoyrsProduct() {
return new Product(
"Blindr",
......@@ -48,6 +70,7 @@ public class Products { /* a good class, but not as good as cse391 */
99999999999.99
);
}
public Product evanlousProduct() {
return new Product(
"Dorito Piece",
......
public class Staff {
public Employee cuperido() {
return new Employee(
"Young You",
"Dreamer",
"Sleep required",
"dreamer.jpg",
"zzz.. zzz.."
);
}
public Employee ctsai7() {
return new Employee(
"Calvin Tsai",
......@@ -49,6 +59,16 @@ public class Staff {
);
}
public Employee kevinh33() {
return new Employee(
"Kevin Hernandez",
"Student",
"Loves pets",
"silly_dino.png",
"My silly cat"
);
}
public Employee evanlou() {
return new Employee(
"Evan Lou",
......
images/products/duo_angry.jpg

30.8 KiB

images/products/pillow.jpg

4.3 KiB

images/staff/dreamer.jpg

17.7 KiB

images/staff/silly_dino.png

270 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