15 lines
372 B
Plaintext
15 lines
372 B
Plaintext
@page "/Dipendenti"
|
|
@inject MessageService AppMServ
|
|
@inject AppAuthService AuthServ
|
|
|
|
<DipendentiMan></DipendentiMan>
|
|
|
|
@code {
|
|
protected override void OnInitialized()
|
|
{
|
|
AppMServ.ShowSearch = true;
|
|
AppMServ.PageName = AuthServ.Traduci("ManDipendenti", AppMServ.UserLang);
|
|
AppMServ.PageIcon = AuthServ.Traduci("ManDipendentiExpl");
|
|
}
|
|
}
|