diff --git a/MP-TAB-SERV/Components/LongStopList.razor.cs b/MP-TAB-SERV/Components/LongStopList.razor.cs
index de082d26..67399120 100644
--- a/MP-TAB-SERV/Components/LongStopList.razor.cs
+++ b/MP-TAB-SERV/Components/LongStopList.razor.cs
@@ -1,4 +1,5 @@
using global::Microsoft.AspNetCore.Components;
+using MP.Data.DatabaseModels;
using MP.Data.Services;
using System.Reflection.Metadata;
@@ -6,10 +7,14 @@ namespace MP_TAB_SERV.Components
{
public partial class LongStopList
{
+ #region Public Properties
+
[Parameter]
public FermiNonQualModel currFnq { get; set; } = new FermiNonQualModel();
- //public string fnqSemaforo { get; set; } = "";
+ #endregion Public Properties
+
+ #region Protected Properties
[Inject]
protected MessageService MsgServ { get; set; } = null!;
@@ -32,9 +37,10 @@ namespace MP_TAB_SERV.Components
await MsgServ.CommentoDtRifSet(currFnq.InizioStato);
NavMan.NavigateTo("prod-stop");
}
- [Inject]
- protected NavigationManager NavMan { get; set; } = null!;
+ #endregion Protected Methods
+
+ #region Private Methods
private string setSemaforo(string sem)
{
@@ -53,5 +59,7 @@ namespace MP_TAB_SERV.Components
}
return answ;
}
+
+ #endregion Private Methods
}
}
\ No newline at end of file
diff --git a/MP-TAB-SERV/MP-TAB-SERV.csproj b/MP-TAB-SERV/MP-TAB-SERV.csproj
index 771be58c..d8a2130c 100644
--- a/MP-TAB-SERV/MP-TAB-SERV.csproj
+++ b/MP-TAB-SERV/MP-TAB-SERV.csproj
@@ -3,7 +3,7 @@