Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • cse391/24wi/faang
  • rh74/faang
  • anikat91/faang
3 results
Show changes
Commits on Source (11)
......@@ -13,6 +13,16 @@ public class Products { /* a good class, but not as good as cse391 */
public Product smayanProduct() {
return new Product(
"Dollar Bill",
"one dollar in cash",
"dollar_bill.jpg",
"Image of a one-dollar bill",
1.00
);
}
public Product benoreProduct() {
return new Product(
"Taylor Swift - Folklore Vinyl",
......@@ -31,6 +41,7 @@ public class Products { /* a good class, but not as good as cse391 */
"Lazy egg",
1000.0
);
}
public Product kevinh33Product() {
......@@ -806,4 +817,14 @@ public class Products { /* a good class, but not as good as cse391 */
1000.0
);
}
public Product shangy24Product() {
return new Product(
"Windows 10 Pro",
"An operating system made by Microsoft",
"win10.jpg",
"Windows 10 Default Wallpaper",
199.99
);
}
}
public class Staff {
public Employee smayan(){
return new Employee(
"Smayan Nirantare",
"CS Student",
"I'm hungry",
"travis_scott.jpg",
"Travis Scott"
);
}
public Employee boschen() {
return new Employee(
"Boshan Chen",
......@@ -29,6 +40,7 @@ public class Staff {
}
public Employee cuperido() {
return new Employee(
"Young You",
......
images/products/dollar_bill.jpg

213 KiB

images/products/win10.jpg

221 KiB

images/staff/travis_scott.jpg

9.26 KiB

images/staff/your-name.jpg

672 KiB