diff --git a/Controllers/GiriController.cs b/Controllers/GiriController.cs index a3a16fe..0d71e16 100644 --- a/Controllers/GiriController.cs +++ b/Controllers/GiriController.cs @@ -443,7 +443,8 @@ namespace SoftwayWeb.Controllers foreach (var role in modelList) { SelectListItem listItem = new SelectListItem(); - string s = role.Catcodice + " - " + role.Catnome; + //string s = role.Catcodice + " - " + role.Catnome; + string s = role.Catnome + " - " + role.Catcodice; // 25/07/2024 invertito nome autista con codice autista listItem.Value = role.Catcodice; listItem.Text = s; selectItems.Add(listItem);