Save CSV like PDSF ready to test
This commit is contained in:
@ -13,7 +13,7 @@ public class Header
|
||||
public Header(string date,
|
||||
string recipe,
|
||||
string id,
|
||||
WaferSummary[] waferSummary,
|
||||
ReadOnlyCollection<WaferSummary> waferSummary,
|
||||
string lPDCountMin,
|
||||
string lPDCM2Min,
|
||||
string areaCountMin,
|
||||
@ -96,7 +96,7 @@ public class Header
|
||||
public string Date { get; }
|
||||
public string Recipe { get; }
|
||||
public string Id { get; }
|
||||
public WaferSummary[] WaferSummary { get; }
|
||||
public ReadOnlyCollection<WaferSummary> WaferSummary { get; }
|
||||
public string LPDCountMin { get; }
|
||||
public string LPDCM2Min { get; }
|
||||
public string AreaCountMin { get; }
|
||||
@ -273,7 +273,7 @@ public class Header
|
||||
result = new(date: date,
|
||||
recipe: recipe,
|
||||
id: id,
|
||||
waferSummary: collection.ToArray(),
|
||||
waferSummary: collection.AsReadOnly(),
|
||||
lPDCountMin: toEol1[0].Trim(),
|
||||
lPDCM2Min: toEol1[1].Trim(),
|
||||
areaCountMin: toEol1[2].Trim(),
|
||||
|
Reference in New Issue
Block a user