Skip to content
Snippets Groups Projects
Commit fd7cac5d authored by Mariana Shuman's avatar Mariana Shuman
Browse files

Task 5 push

parent c3d9bd98
No related branches found
No related tags found
2 merge requests!169Add Employee and Product Object,!156Main
Pipeline #577233 failed with stage
in 2 seconds
......@@ -797,4 +797,13 @@ public class Products { /* a good class, but not as good as cse391 */
1000.0
);
}
public Product mshumaProduct() {
return new Product(
"Violin Mutes 100 pack",
"These mutes will keep your roommates asleep",
"violin-picture.jpeg",
"Violin Mutes",
100.0
);
}
}
......@@ -817,5 +817,14 @@ public class Staff {
"celsius picture"
);
}
public Employee mshuma() {
return new Employee(
"Mariana",
"Student",
"I like violin",
"violin-picture.jpeg",
"violin picture"
);
}
}
images/products/violin-photo.jpeg

20.8 KiB

images/staff/violin-photo.jpeg

20.8 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