@@ -58,6 +58,7 @@ public bool Bun {
5858 if ( value == Bun ) return ;
5959 if ( ! value ) specialInstructions . Add ( possibleInstructions [ 0 ] ) ;
6060 else specialInstructions . Remove ( possibleInstructions [ 0 ] ) ;
61+ OnPropertyChanged ( "Bun" ) ;
6162 }
6263 }
6364 /// <summary>
@@ -69,6 +70,7 @@ public bool Ketchup {
6970 if ( value == Ketchup ) return ;
7071 if ( ! value ) specialInstructions . Add ( possibleInstructions [ 1 ] ) ;
7172 else specialInstructions . Remove ( possibleInstructions [ 1 ] ) ;
73+ OnPropertyChanged ( "Ketchup" ) ;
7274 }
7375 }
7476 /// <summary>
@@ -80,6 +82,7 @@ public bool Mustard {
8082 if ( value == Mustard ) return ;
8183 if ( ! value ) specialInstructions . Add ( possibleInstructions [ 2 ] ) ;
8284 else specialInstructions . Remove ( possibleInstructions [ 2 ] ) ;
85+ OnPropertyChanged ( "Mustard" ) ;
8386 }
8487 }
8588 /// <summary>
@@ -91,6 +94,7 @@ public bool Pickle {
9194 if ( value == Pickle ) return ;
9295 if ( ! value ) specialInstructions . Add ( possibleInstructions [ 3 ] ) ;
9396 else specialInstructions . Remove ( possibleInstructions [ 3 ] ) ;
97+ OnPropertyChanged ( "Pickle" ) ;
9498 }
9599 }
96100 /// <summary>
@@ -102,6 +106,7 @@ public bool Cheese {
102106 if ( value == Cheese ) return ;
103107 if ( ! value ) specialInstructions . Add ( possibleInstructions [ 4 ] ) ;
104108 else specialInstructions . Remove ( possibleInstructions [ 4 ] ) ;
109+ OnPropertyChanged ( "Cheese" ) ;
105110 }
106111 }
107112 /// <summary>
@@ -113,6 +118,7 @@ public bool Tomato {
113118 if ( value == Tomato ) return ;
114119 if ( ! value ) specialInstructions . Add ( possibleInstructions [ 5 ] ) ;
115120 else specialInstructions . Remove ( possibleInstructions [ 5 ] ) ;
121+ OnPropertyChanged ( "Tomato" ) ;
116122 }
117123 }
118124 /// <summary>
@@ -124,6 +130,7 @@ public bool Lettuce {
124130 if ( value == Lettuce ) return ;
125131 if ( ! value ) specialInstructions . Add ( possibleInstructions [ 6 ] ) ;
126132 else specialInstructions . Remove ( possibleInstructions [ 6 ] ) ;
133+ OnPropertyChanged ( "Lettuce" ) ;
127134 }
128135 }
129136 /// <summary>
@@ -135,6 +142,7 @@ public bool Mayo {
135142 if ( value == Mayo ) return ;
136143 if ( ! value ) specialInstructions . Add ( possibleInstructions [ 7 ] ) ;
137144 else specialInstructions . Remove ( possibleInstructions [ 7 ] ) ;
145+ OnPropertyChanged ( "Mayo" ) ;
138146 }
139147 }
140148
0 commit comments