Skip to content
Snippets Groups Projects
Commit 4e602d08 authored by Madhumitha Gandhi's avatar Madhumitha Gandhi
Browse files

Resolve conflicts in Products.java and Staff.java

parents d0ee8fa7 3152c806
No related branches found
No related tags found
1 merge request!120ggsmadhu staff page
...@@ -10,6 +10,16 @@ public class Products { /* a good class, but not as good as cse391 */ ...@@ -10,6 +10,16 @@ public class Products { /* a good class, but not as good as cse391 */
150.00 150.00
); );
} }
public Product acsparksProduct() {
return new Product(
"Free Beans",
"A bunch of free, loose beans",
"beans.jpg",
"Image of free beans",
1.99
);
}
public Product cuperidoProduct() { public Product cuperidoProduct() {
return new Product( return new Product(
...@@ -652,7 +662,7 @@ public class Products { /* a good class, but not as good as cse391 */ ...@@ -652,7 +662,7 @@ public class Products { /* a good class, but not as good as cse391 */
"Coca Cola can", "Coca Cola can",
1.50 1.50
); );
}
public Product chetan7() { public Product chetan7() {
return new Product( return new Product(
"Porche 911", "Porche 911",
...@@ -674,5 +684,15 @@ public class Products { /* a good class, but not as good as cse391 */ ...@@ -674,5 +684,15 @@ public class Products { /* a good class, but not as good as cse391 */
2.00 2.00
); );
}
public Product sprofit() {
return new Product(
"Baseball Glove",
"Premium leather baseball glove",
"BaseballGlove.jpeg",
"Picture of a Rawlings baseball glove",
399.99
);
} }
} }
...@@ -10,6 +10,16 @@ public class Staff { ...@@ -10,6 +10,16 @@ public class Staff {
); );
} }
public Employee acsparks() {
return new Employee(
"Aiden Sparks",
"Student",
"Stuck in the Allen basement",
"beans.jpg",
"bean texture"
);
}
public Employee ctsai7() { public Employee ctsai7() {
return new Employee( return new Employee(
"Calvin Tsai", "Calvin Tsai",
...@@ -681,7 +691,7 @@ public class Staff { ...@@ -681,7 +691,7 @@ public class Staff {
"mountsi.jpeg", "mountsi.jpeg",
"Mount Si" "Mount Si"
); );
}
public Employee chetan7() { public Employee chetan7() {
return new Employee( return new Employee(
"Chetan", "Chetan",
...@@ -701,5 +711,15 @@ public class Staff { ...@@ -701,5 +711,15 @@ public class Staff {
"picture of a coffee" "picture of a coffee"
); );
} }
public Employee sprofit() {
return new Employee(
"Sam",
"Student",
"EE Student",
"TimLIncecum.jpeg",
"Picture of my favorite pitcher"
);
}
} }
images/products/BaseballGlove.jpeg

6.22 KiB

images/products/beans.jpg

321 KiB

images/staff/TimLIncecum.jpeg

18.2 KiB

images/staff/beans.jpg

321 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