Skip to content
Snippets Groups Projects

Commits for HW5

Merged Jaser Chowdhury requested to merge jaserc_staff_page into main
7 files
+ 57
1
Compare changes
  • Side-by-side
  • Inline
Files
7
+ 29
1
public class Staff {
public Employee hyunsu85() {
return new Employee(
"Timothy Yi",
"Spur's fan",
"Dunking on Lebron",
"wembanyama.jpg",
"Future NBA GOAT"
);
}
public Employee mkhz() {
return new Employee(
"Michael Kuang",
@@ -891,6 +901,14 @@ public class Staff {
"Hello Kitty"
);
}
public Employee czli2106() {
return new Employee(
"Charles Li",
"Student",
"Hi",
"spotify.jpg",
"music");
}
public Employee tonywu() {
return new Employee(
"Tony",
@@ -1050,5 +1068,15 @@ public class Staff {
);
}
}
public Employee zhuoxi(){
return new Employee(
"Steven",
"Student",
"Grinding",
"pagani.jpg",
"My favorite car of all time."
);
}
}
Loading