Files
magman/MagMan.UI/Pages/Index.razor.cs
T
2024-02-02 11:31:24 +01:00

27 lines
640 B
C#

using MagMan.Core.Services;
using Microsoft.AspNetCore.Components;
namespace MagMan.UI.Pages
{
public partial class Index
{
#region Protected Properties
[Inject]
protected MessageService AppMService { get; set; } = null!;
#endregion Protected Properties
#region Protected Methods
protected override void OnInitialized()
{
AppMService.ShowSearch = false;
AppMService.ShowCustomers = false;
AppMService.PageName = "Home";
AppMService.PageIcon = "fa-solid fa-home pr-2";
}
#endregion Protected Methods
}
}