Skip to content
Snippets Groups Projects
Commit e48f12da authored by Mehul Chaudhari's avatar Mehul Chaudhari
Browse files

Merge branch 'mehulc_staff_page' into 'main'

Mehulc staff page

See merge request !31
parents 1284e523 f230f4f1
No related branches found
No related tags found
1 merge request!31Mehulc staff page
Pipeline #576164 passed
......@@ -10,6 +10,15 @@ public class Products { /* a good class, but not as good as cse391 */
42.024
);
}
public Product mehulcsProduct() {
return new Product(
"Giant Gummy Bear",
"Big fatty tasty gummy bear",
"gummybear.jpg",
"Picture of a beautiful gummy bear",
10000.10
);
}
public Product kevinsProduct(){
return new Product(
"Basketball",
......
......@@ -7,6 +7,15 @@ public class Staff {
"snorlax.png",
"A snorlax sitting"
);
}
public Employee mehulc() {
return new Employee(
"Mehul Chaudhari",
"Student",
"Eating",
"snoopy.jpg",
"just snoopy."
);
}
public Employee xckevin(){
return new Employee(
......
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