TSV like PDSF ready to test
This commit is contained in:
@ -9,7 +9,7 @@ namespace Adaptation.FileHandlers.Stratus;
|
||||
public class Wafer
|
||||
{
|
||||
|
||||
public Wafer(string destination, string mean, string passFail, string recipe, string reference, List<string> sites, string slot, string source, string stdDev, string waferText)
|
||||
public Wafer(string destination, string mean, string passFail, string recipe, string reference, ReadOnlyCollection<string> sites, string slot, string source, string stdDev, string waferText)
|
||||
{
|
||||
Destination = destination;
|
||||
Mean = mean;
|
||||
@ -28,7 +28,7 @@ public class Wafer
|
||||
public string PassFail { get; }
|
||||
public string Recipe { get; }
|
||||
public string Reference { get; }
|
||||
public List<string> Sites { get; }
|
||||
public ReadOnlyCollection<string> Sites { get; }
|
||||
public string Slot { get; }
|
||||
public string Source { get; }
|
||||
public string StdDev { get; }
|
||||
@ -216,7 +216,7 @@ public class Wafer
|
||||
passFail: passFail,
|
||||
recipe: recipe,
|
||||
reference: reference,
|
||||
sites: sites,
|
||||
sites: sites.AsReadOnly(),
|
||||
slot: slot,
|
||||
source: source,
|
||||
stdDev: stdDev,
|
||||
|
Reference in New Issue
Block a user