Aggiunta oggetto remnant

This commit is contained in:
Samuele E. Locatelli
2020-01-29 15:32:59 +01:00
parent d6a5ccc629
commit be66588029
+24 -1
View File
@@ -223,6 +223,24 @@ namespace NKC_SDK
/// Elenco Part da produrre x ordine
/// </summary>
public List<Part> PartList { get; set; } = null;
/// <summary>
/// Eventuale remnant
/// </summary>
public NestRemn Remnant { get; set; }
}
/// <summary>
/// Dati di un foglio di Remnant
/// </summary>
public class NestRemn
{
/// <summary>
/// Dimensione L del remnant
/// </summary>
public decimal L_mm { get; set; } = 0;
/// <summary>
/// Dimensione W del remnant
/// </summary>
public decimal W_mm { get; set; } = 0;
}
/// <summary>
/// Struttura stack
@@ -338,7 +356,13 @@ namespace NKC_SDK
/// Elenco Stack previsti
/// </summary>
public List<NestBunk> BunkList { get; set; }
/// <summary>
/// Elenco Carts
/// </summary>
public List<NestCart> CartList { get; set; }
/// <summary>
/// Elenco Bin
/// </summary>
public List<NestBin> BinList { get; set; }
}
@@ -370,7 +394,6 @@ namespace NKC_SDK
/// </summary>
public List<Part> PartList { get; set; }
}
/// <summary>
/// Classe che rappresenta stato ordine ricevuto via REDIS da NESTING
/// </summary>