27 lines
640 B
C#
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
|
|
}
|
|
} |