diff --git a/TecniStamp/TecniStamp/Components/Pages/Anagrafiche/Operatori.razor b/TecniStamp/TecniStamp/Components/Pages/Anagrafiche/Operatori.razor
index 495f777..15f5357 100644
--- a/TecniStamp/TecniStamp/Components/Pages/Anagrafiche/Operatori.razor
+++ b/TecniStamp/TecniStamp/Components/Pages/Anagrafiche/Operatori.razor
@@ -1,6 +1,71 @@
-
Operatori
-@page "/account/login"
+@page "/Anagrafiche/Operatori"
+@using Microsoft.EntityFrameworkCore
+@using TecniStamp.Domain
+
+Operatori
+
+
+
+
+
+
+
+
+
Operatori
+
+
+
+
+
+
+
+
+
+
+
+ @* *@
+
+
+
+ @* *@
+
+ @* *@
+
+
+
+
+
+
+
+
+
+
+
+
@code {
+ IQueryable utenti;
+ RadzenDataGrid userGrid;
+
+ ///
+ /// Carica la lista degli utenti non eliminati, ordinandoli per cognome e nome.
+ ///
+ protected override async Task OnInitializedAsync()
+ {
+ await base.OnInitializedAsync();
+
+ utenti = await _managerService.UtenteService.RicercaQueryable(
+ x => x.Eliminato == false,
+ includi: x => x.Include(y => y.Ruolo),
+ ordinamento: x => x.OrderBy(y => y.Cognome).ThenBy(z => z.Nome));
+ }
}