@page "/selection" @inject NavigationManager navigationManager Selection | TireTargets @if(!ShowWizard) {

Here are the locations associated with your account:

  • ID
  • Location Name
  • Needs Selection
@foreach (var current in locInfo) {
  • @current.LocationID
  • @current.LocationName
  • @DoesLocIDNeedSelection(current.LocationID)
} Modify Selected Locations
} else if(ShowWizard && !WizardComplete) {
@* Step 1 - Select Tire Offers *@

Please select your Tire Offer(s):

@{ @for (int index = 0; index < availableTireOffers.Count; index++) { int temp = index;

@if (temp > 0 && temp % 2 == 0) {
} } }
@* Step 2 - Select Service Offers *@

Please select your Service Offer(s):

@{ @for (int index = 0; index < availableServiceOffers.Count; index++) { int temp = index;

@if (temp > 0 && temp % 2 == 0) {
} } }
@* Step 3 - Confirm Order *@

Here are your selected offers:

@{ @for (int index = 0; index < selectedTireOffers.Count; index++) { int temp = index; @if (selectedTireOffers[index]) {
} }
@for (int index = 0; index < selectedServiceOffers.Count; index++) { int temp = index; @if (selectedServiceOffers[index]) {
} } }
}