115fc06288
- gestione auth da tab anagrafica - gestione reload con spinner in pagine
26 lines
581 B
C#
26 lines
581 B
C#
using Microsoft.AspNetCore.Components;
|
|
using SHERPA.BBM.UI.Data;
|
|
|
|
namespace SHERPA.BBM.UI.Pages
|
|
{
|
|
public partial class Utility
|
|
{
|
|
#region Protected Properties
|
|
|
|
[Inject]
|
|
protected MessageService MService { get; set; } = null!;
|
|
|
|
#endregion Protected Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected override Task OnInitializedAsync()
|
|
{
|
|
MService.NotifyHeadChanged();
|
|
MService.ShowSearch = false;
|
|
return base.OnInitializedAsync();
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |