diff --git a/EgwProxy.Icoel/Compac/ComClient.cs b/EgwProxy.Icoel/Compac/ComClient.cs
index dcfe8e10..646d41af 100644
--- a/EgwProxy.Icoel/Compac/ComClient.cs
+++ b/EgwProxy.Icoel/Compac/ComClient.cs
@@ -112,7 +112,7 @@ namespace EgwProxy.Icoel.Compac
/// Elenco dei layout attivi della varietà
///
/// Guid della varietà
- ///
+ /// Oggetto Lyout attivo
internal Layout GetActiveLayout(Guid VarietyId)
{
return SSClient.GetActiveLayout(VarietyId);
@@ -121,7 +121,7 @@ namespace EgwProxy.Icoel.Compac
///
/// Elenco varietà attive
///
- ///
+ /// Array Variety attive
internal Variety[] GetActiveVarieties()
{
return SSClient.GetActiveVarieties();
@@ -139,7 +139,7 @@ namespace EgwProxy.Icoel.Compac
///
/// Recupera il batch corrente (se monolinea)
///
- ///
+ /// Batch corrente (singolo)
internal Batch GetCurrentBatch()
{
return SSClient.GetCurrentBatch();
@@ -149,7 +149,7 @@ namespace EgwProxy.Icoel.Compac
/// Recupera il batch corrente data la linea
///
/// Numero della linea 1=sx/2=dx
- ///
+ /// Batch della linea selezionata
internal Batch GetCurrentBatchByLane(int lineNum)
{
return SSClient.GetCurrentBatchByLane(lineNum);
@@ -159,7 +159,7 @@ namespace EgwProxy.Icoel.Compac
/// Elenco dei layout della varietà
///
/// Guid della varietà
- ///
+ /// Layout della Variety
internal Layout[] GetLayouts(Guid VarietyId)
{
return SSClient.GetLayouts(VarietyId);
diff --git a/EgwProxy.Icoel/Connector.cs b/EgwProxy.Icoel/Connector.cs
index 8a0f14c8..a9ca98ca 100644
--- a/EgwProxy.Icoel/Connector.cs
+++ b/EgwProxy.Icoel/Connector.cs
@@ -15,8 +15,8 @@ namespace EgwProxy.Icoel
///
/// Inizializazzione classe con salvataggio ip/porta del webservice del sizer
///
- ///
- ///
+ /// Indirizzo IP del sizer
+ /// POrta del sizer (default 8001)
public Connector(string ipAddress, string tcpPort)
{
this.ipAddress = ipAddress;
@@ -30,7 +30,7 @@ namespace EgwProxy.Icoel
///
/// Verifica il fornitore e se non ci fosse crea
///
- ///
+ /// Struttura GrowerInfo del fornitore
public void CheckGrower(GrowerInfo GrowerData)
{
using (var Client = new ComClient(ipAddress, tcpPort))
@@ -54,9 +54,9 @@ namespace EgwProxy.Icoel
}
///
- /// Recupera elenco dei Batch correnti (su L1 SX e L2 DX)
+ /// Recupera elenco dei Batch correnti
///
- ///
+ /// Dizionario dei batch sulle due linee (1=SX, 2=DX)
public Dictionary GetCurrentBatch()
{
Dictionary outVal = new Dictionary();
@@ -75,8 +75,7 @@ namespace EgwProxy.Icoel
///
/// Restituisce un dictionary di varietà e relativi layout
///
- ///
- ///
+ /// Dizionario: key=Variety, value=Layout[] associati
public Dictionary GetLayoutAndVariety()
{
Dictionary outVal = new Dictionary();
@@ -98,7 +97,7 @@ namespace EgwProxy.Icoel
/// Restituisce un array di Layout validi data Guid della Variety
///
///
- ///
+ /// Array di Layout della varietà dato suo Guid
public Layout[] GetLayoutForVariety(Guid varGuid)
{
Layout[] outVal = new Layout[1];
@@ -115,8 +114,8 @@ namespace EgwProxy.Icoel
///
/// Restituisce un dictionary di layout validi x un array di varietà fornito
///
- ///
- ///
+ /// Array varietà di cui ottenere i layout
+ /// Dizionario: key=Variety, value=Layout[] associati
public Dictionary GetLayoutForVarietyList(Variety[] varietiesList)
{
Dictionary outVal = new Dictionary();
@@ -137,7 +136,7 @@ namespace EgwProxy.Icoel
/// Restituisce elenco delle Variety
///
/// Solo attive (true) o tutte (false)
- ///
+ /// Elenco delel Variety trovate
public Variety[] GetVarietyList(bool onlyActive = true)
{
Variety[] varietiesList;
@@ -180,7 +179,7 @@ namespace EgwProxy.Icoel
///
///
///
- ///
+ /// Oggetto Batch creato
private Batch CreateBatch(GrowerInfo GrowerData, Guid VarietyId, Guid LayoutId, string SizingProfileName)
{
var batch = new Batch();
diff --git a/EgwProxy.Icoel/GrowerInfo.cs b/EgwProxy.Icoel/GrowerInfo.cs
index b3fd979f..68566c7c 100644
--- a/EgwProxy.Icoel/GrowerInfo.cs
+++ b/EgwProxy.Icoel/GrowerInfo.cs
@@ -10,7 +10,7 @@ namespace EgwProxy.Icoel
#region Public Properties
///
- /// Riga commento 01
+ /// Lista di commenti
///
public List Comments { get; set; } = new List() { "Commento 01", "Commento 02", "Commento 01" };