24 lines
478 B
C#
24 lines
478 B
C#
using Microsoft.AspNetCore.Components;
|
|
using SHERPA.AD.Data;
|
|
|
|
namespace SHERPA.AD.Pages
|
|
{
|
|
public partial class Help
|
|
{
|
|
#region Protected Properties
|
|
|
|
[Inject]
|
|
protected MessageService MService { get; set; } = null!;
|
|
|
|
#endregion Protected Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected override void OnInitialized()
|
|
{
|
|
MService.NotifyHeadChanged();
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |