@using BlazorAnimation @using TIAMWebApp.Shared.Application.Interfaces @inject IServiceProviderDataService ServiceProviderDataService
@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(); } }