Skip to content
Snippets Groups Projects
Commit aed83037 authored by Sriram Kutty's avatar Sriram Kutty
Browse files

Sriram's changes

parents afa74f19 cc98da8d
Branches skutty_staff_page
No related tags found
1 merge request!23Added new product and staff
Pipeline #576129 passed
......@@ -110,6 +110,36 @@ public class Products { /* a good class, but not as good as cse391 */
);
}
public Product tanjalsProduct() {
return new Product(
"Creatine",
"Big muscle",
"creatine.jpg",
"Number 1 lifting supplement",
39.95
);
}
public Product keshavsProduct() {
return new Product(
"Dirt",
"Great for plants!",
"dirt.jpg",
"image of the product",
4.67
);
}
public Product dhvbnlProduct() {
return new Product (
"proteen",
"gets you jacked",
"proteen.jpg",
"image of proteen powder",
9.99
);
}
public Product yixuan19Product(){
return new Product (
"Goomba",
......@@ -117,6 +147,16 @@ public class Products { /* a good class, but not as good as cse391 */
"Avatar.png",
"Picture of Gawr Gura",
114514.0
);
}
public Product swangsamProduct(){
return new Product(
"Pullup Bar",
"It builds back",
"pullup.png",
"pullup bar image",
1.2
);
}
......
......@@ -128,6 +128,37 @@ public class Staff {
);
}
public Employee tshukl() {
return new Employee(
"Tanjal",
"Student",
"Cries",
"redpanda.jpg",
"A special panda"
);
}
public Employee kesach() {
return new Employee(
"Keshav",
"Procrastinator",
"I'm hungry",
"keshav.jpg",
"a swig of chai"
);
}
public Employee dhvbnl() {
return new Employee (
"Dhruv",
"tech student",
"breaking things that work, making things that break",
"dhvbnl.jpg",
"pillow representing dhruv"
);
}
public Employee yixuan19() {
return new Employee (
......@@ -139,6 +170,7 @@ public class Staff {
);
}
public Employee skutty() {
return new Employee(
"Sriram",
......@@ -148,4 +180,14 @@ public class Staff {
"cake"
);
}
public Employee swangsam(){
return new Employee(
"Samuel",
"Student",
"runs",
"sephiroth.png",
"sephiroth"
);
}
}
images/products/creatine.jpg

249 KiB

images/products/dirt.jpg

18.4 KiB

images/products/proteen.jpg

62 KiB

images/products/pullup.png

12.5 KiB

images/staff/dhvbnl.jpg

1.35 MiB

images/staff/keshav.jpg

4.01 MiB

images/staff/redpanda.jpg

94.7 KiB

images/staff/sephiroth.png

20.9 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