@page "/transfer" @using TIAMSharedUI.Pages.Components @using TIAMSharedUI.Pages.Components.EditComponents @using TIAMSharedUI.Shared @using TIAMWebApp.Shared.Application.Interfaces @using TIAMWebApp.Shared.Application.Models.ClientSide.UI @using TIAMWebApp.Shared.Application.Models.ClientSide.UI.WizardModels @using AyCode.Services.Loggers @inject NavigationManager navManager @inject IAcLogWriterClientBase BrowserConsoleLogWriter @inject IWizardProcessor WizardProcessor Transfer
@* *@

Book an Airport Transfer

Welcome to Tour I Am! Book your airport transfer with us for a smooth and stress-free experience. Our professional drivers are ready to take you to and from the airport in comfort and style. We offer competitive rates and reliable service, ensuring you get to your destination on time.

Why Choose Tour I Am?

  • Reliable Service: Punctual pickups and drop-offs.
  • Professional Drivers: Experienced and courteous drivers.
  • Affordable Rates: Competitive pricing with no hidden fees.
  • Comfortable Vehicles: Clean, modern, and well-maintained cars.

How to Book

Booking your airport transfer is easy! Simply visit our booking page, enter your details, and confirm your reservation. You can also contact us at info@touriam.com or call us at (123) 456-7890 for assistance.

Experience the convenience and reliability of Tour I Am. Book your airport transfer today and travel with peace of mind!

@code { public TransferWizardModel myModel = new TransferWizardModel(); public List sliders = new List { new HeroSliderItem { Title = "Welcome to TIAM", ImageUrl = "_content/TIAMSharedUI/images/f1_1.png" }, new HeroSliderItem { Title = "Welcome to TIAM", ImageUrl = "_content/TIAMSharedUI/images/f1_2.png" }, new HeroSliderItem { Title = "Welcome to TIAM", ImageUrl = "_content/TIAMSharedUI/images/f1_3.png" }, }; public List TransferIgnorList = new List { "Id", "UserId", "ProductId", "PaymentId", "TripDate", "FirstName", "LastName", "UserProductMappingId", "UserProductToCarId", "ReferralId", "Price" }; /*protected override void OnAfterRender(bool isFirst) { message = " Target destination is " + slider.SliderElementId.ToString(); }*/ public async Task SubmitForm(object Result) { var transfer = await WizardProcessor.ProcessWizardAsync(Result.GetType(), Result); BrowserConsoleLogWriter.Info($"Submitted nested form: {Result.GetType().FullName}"); navManager.NavigateTo("/transfer2/"+transfer.Id); } }