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 (9)
......@@ -380,6 +380,16 @@ public class Products { /* a good class, but not as good as cse391 */
);
}
public Product siyeeProduct() {
return new Product(
"Tulips",
"Some pretty flowers to make you happier!",
"tulips.jpg",
"Pink, yellow, purple, and orange tulip flowers in a garden.",
49.99
);
}
public Product lq22Product() {
return new Product(
"Large Fries",
......@@ -706,6 +716,15 @@ public class Products { /* a good class, but not as good as cse391 */
);
}
public Product jsun16() {
return new Product(
"Massager Heating Pad for Neck and Shoulder",
"Suitable for people to release muscle tension and promote blood flow.",
"Neck_Shoulder_Heating_Pad.jpeg",
"Electric Heating Pad for Neck and Shoulder",
68.00
);
}
public Product azitabProduct() {
return new Product(
"Cinnamon Roll Plushie",
......@@ -714,5 +733,6 @@ public class Products { /* a good class, but not as good as cse391 */
"Picture of Cinnamon Roll Plushie",
500.00
);
}
}
......@@ -397,6 +397,16 @@ public class Staff {
);
}
public Employee siyee() {
return new Employee(
"Sierra",
"Student",
"I love plushies",
"Bear.jpg",
"Brown bear with hearts"
);
}
public Employee lq22() {
return new Employee(
"Audrey",
......@@ -732,6 +742,15 @@ public class Staff {
);
}
public Employee jsun16() {
return new Employee(
"Jessie",
"Student",
"Want to minor in Spanish",
"Solana_Beach_bluffs.jpeg",
"Picture of Solana Beach, San Diego"
);
}
public Employee azitab() {
return new Employee(
"Azita",
......
images/products/Neck_Shoulder_Heating_Pad.jpeg

39.6 KiB

images/products/tulips.jpg

119 KiB

images/staff/Bear.jpg

16.8 KiB

images/staff/Solana_Beach_bluffs.jpeg

10 KiB