1@using Escali.LicenseControl.Client.Components.TableComponents
2@using Escali.LicenseControl.Client.ClientModels
3@using Escali.LicenseControl.Client.ViewModels
4@using Castle.Core.Internal
5@using System.Collections.Specialized
7@inject StateService _stateService
10<PageTitle>Escali | @_stateService.HeaderName.Value</PageTitle>
13 <h3 style="font-style: normal; font-weight: 600">@_stateService.HeaderName.Value</h3>
19 protected override void OnInitialized()
21 _stateService.HeaderName.ValueChanged += StateHasChanged;
24 void IDisposable.Dispose()
26 _stateService.HeaderName.ValueChanged -= StateHasChanged;