-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMenuItemImageHelper.cs
More file actions
32 lines (31 loc) · 1.53 KB
/
MenuItemImageHelper.cs
File metadata and controls
32 lines (31 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
public static class MenuItemImageHelper
{
public static Dictionary<IceCreamFlavor, string> BowlImages = new Dictionary<IceCreamFlavor, string>()
{
{ IceCreamFlavor.Chocolate, "Images/Bowls/pistachio-bowl.jpeg" },
{ IceCreamFlavor.Vanilla, "Images/Bowls/vanilla-bowl.jpeg" },
{ IceCreamFlavor.Strawberry, "Images/Bowls/strawberry-bowl.jpeg" },
{ IceCreamFlavor.Pistachio, "Images/Bowls/chocolate-bowl.jpeg" }
};
public static Dictionary<IceCreamFlavor, string> ConeImages = new Dictionary<IceCreamFlavor, string>()
{
{ IceCreamFlavor.Chocolate, "Images/Cones/pistachio-cone.jpeg" },
{ IceCreamFlavor.Vanilla, "Images/Cones/vanilla-cone.jpeg" },
{ IceCreamFlavor.Strawberry, "Images/Cones/strawberry-cone.jpeg" },
{ IceCreamFlavor.Pistachio, "Images/Cones/chocolate-cone.jpeg" }
};
public static Dictionary<IceCreamFlavor, string> BowlImageNames = new Dictionary<IceCreamFlavor, string>()
{
{ IceCreamFlavor.Chocolate, "Choclate-Bowl" },
{ IceCreamFlavor.Vanilla, "Vanilla-Bowl" },
{ IceCreamFlavor.Strawberry, "Strawberry-Bowl" },
{ IceCreamFlavor.Pistachio, "Pistachio-Bowl" },
};
public static Dictionary<IceCreamFlavor, string> ConeImageNames = new Dictionary<IceCreamFlavor, string>()
{
{ IceCreamFlavor.Chocolate, "Choclate-Cone" },
{ IceCreamFlavor.Vanilla, "Vanilla-Cone" },
{ IceCreamFlavor.Strawberry, "Strawberry-Cone" },
{ IceCreamFlavor.Pistachio, "Pistachio-Cone" },
};
}