16 lines
394 B
Plaintext
16 lines
394 B
Plaintext
@page "/Gruppi"
|
|
@inject MessageService AppMServ
|
|
@inject AppAuthService AuthServ
|
|
|
|
<GruppiMan></GruppiMan>
|
|
|
|
@code {
|
|
protected override void OnInitialized()
|
|
{
|
|
// imposto pagina e info testata
|
|
AppMServ.ShowSearch = false;
|
|
AppMServ.PageName = AuthServ.Traduci("ManGruppi", AppMServ.UserLang);
|
|
AppMServ.PageIcon = AuthServ.Traduci("ManGruppiExpl");
|
|
}
|
|
}
|