Skip to content
Snippets Groups Projects
Commit 2f2a30b5 authored by Esther Kim's avatar Esther Kim
Browse files

Merge branch 'ekimji1_staff_page' into 'main'

Added product and bio

See merge request cse391/24wi/faang!153
parents c3d9bd98 87063b6c
No related branches found
No related tags found
2 merge requests!156Main,!153Added product and bio
Pipeline #577194 passed
...@@ -23,6 +23,15 @@ public class Products { /* a good class, but not as good as cse391 */ ...@@ -23,6 +23,15 @@ 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 kevinh33Product() { public Product kevinh33Product() {
return new Product( return new Product(
......
public class Staff { public class Staff {
public Employee boschen() { public Employee boschen() {
return new Employee( return new Employee(
"Boshan Chen", "Boshan Chen",
...@@ -9,7 +10,15 @@ public class Staff { ...@@ -9,7 +10,15 @@ public class Staff {
"umm.." "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",
......
images/products/gudetama.jpg

67.1 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