Skip to content
Snippets Groups Projects
Commit fae1e5f9 authored by Rayana Lyons's avatar Rayana Lyons
Browse files

Merge

parents c59a7fdc 311cbc24
No related branches found
No related tags found
2 merge requests!187Rlyons8 staff page,!156Main
/* check out these products! */
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 benoreProduct() {
return new Product(
"Taylor Swift - Folklore Vinyl",
"A vinyl containing the deluxe edition of Taylor Swift's Grammy-winning FFolklore album.",
"folkloreac.png",
"The album cover for Taylor Swift's folklore album.",
29.99
);
}
public Product ekimji1Product() {
return new Product(
"Gudetama",
"perfect",
"gudetama.jpg",
"Lazy egg",
1000.0
);
}
public Product kevinh33Product() {
return new Product(
"Duolingo owl",
......@@ -765,4 +797,13 @@ 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 class Staff {
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() {
return new Employee("Ben",
"Student",
"Computer Science student",
"benore.jpg",
"Picture of Ben Oreizy");
}
public Employee cuperido() {
return new Employee(
"Young You",
......@@ -788,6 +817,7 @@ public class Staff {
"Norman Rockwell Self-Portrait"
);
}
<<<<<<< HEAD
public Employee rlyons() {
return new Employee(
......@@ -801,4 +831,16 @@ public class Staff {
}
=======
public Employee pranavnt() {
return new Employee(
"Pranav",
"Student",
"i like celsius",
"celsius-picture.png",
"celsius picture"
);
}
}
>>>>>>> 311cbc24436a3ea467c0c94dab3b0a6982401e95
images/products/chocolate_ice_cream.jpg

11.6 KiB

images/products/folkloreac.png

79.4 KiB

images/products/gudetama.jpg

67.1 KiB

images/products/sleepCoke.jpg

126 KiB

images/staff/White.jpg

961 B

images/staff/benore.jpg

175 KiB

images/staff/celsius-picture.png

375 KiB

images/staff/tired_dog.jpg

80 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