Skip to content
Snippets Groups Projects
Commit 3f6de74b authored by Truong Van Ly's avatar Truong Van Ly
Browse files

Merge branch 'main' into tly6_staff_page

parents cf15fb0e dfb4af3c
No related branches found
No related tags found
1 merge request!90Tly6 staff page
File added
......@@ -401,6 +401,17 @@ public class Products { /* a good class, but not as good as cse391 */
);
}
public Product zliu44Product(){
return new Product (
"Coffee mug",
"Made by pure clay and human made not by machine",
"mug.jpg",
"a good looking mug is on the table",
25.99
);
}
public Product ryrozProduct() {
return new Product(
"A broken computer",
......@@ -536,4 +547,14 @@ public class Products { /* a good class, but not as good as cse391 */
5.99
);
}
public Product cscs24Product() {
return new Product(
"Coffee",
"Good coffee",
"coffee.jpeg",
"Picture of coffee",
4.99
);
}
}
......@@ -430,6 +430,16 @@ public class Staff {
"Sun setting behind ocean"
);
}
public Employee zliu44(){
return new Employee(
"Leo Liu",
"Student",
"I am a music producer",
"yoyo.jpg",
"favorite rapper"
);
}
public Employee ryroz() {
return new Employee(
......@@ -568,4 +578,14 @@ public class Staff {
"Picture of women playing volleyball"
);
}
public Employee cscs24() {
return new Employee(
"Chaitanya",
"Student",
"On the grind",
"ocean.jpg",
"Picture of the ocean"
);
}
}
images/staff/mug.jpg

126 KiB

images/staff/yoyo.jpg

38.8 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