@using BlazorAnimation @using TIAMWebApp.Shared.Application.Interfaces @inject IServiceProviderDataService ServiceProviderDataService
Hotel details

Your QR code

Use this in printed material, to gain referrals

Hotel name: Example hotel

Address: Budapest, Minta u. 46

Phone number: +36 1 123 4567

@code { [Parameter] public Guid ContextID { get; set; } public string ImageSource { get; set; } = ""; protected override async Task OnInitializedAsync() { ImageSource = await ServiceProviderDataService.GetQRCodeByProductIdAsync(Guid.NewGuid()); await base.OnInitializedAsync(); } }