Files
samuele 115fc06288 Completata review
- gestione auth da tab anagrafica
- gestione reload con spinner in pagine
2023-08-02 17:11:51 +02:00

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
}
}