18 lines
390 B
Plaintext
18 lines
390 B
Plaintext
@page "/Installazioni"
|
|
@attribute [Authorize]
|
|
|
|
@using LiMan.UI.Components
|
|
@using LiMan.UI.Data
|
|
|
|
@inject MessageService AppMService
|
|
|
|
<ListInstallazioni></ListInstallazioni>
|
|
|
|
@code {
|
|
protected override void OnInitialized()
|
|
{
|
|
AppMService.ShowSearch = false;
|
|
AppMService.PageName = "Elenco Installazioni/Clienti";
|
|
AppMService.PageIcon = "fas fa-list";
|
|
}
|
|
} |