TSV like PDSF ready to test

This commit is contained in:
2025-01-14 11:22:47 -07:00
parent 334929a025
commit d4d935d2f1
23 changed files with 269 additions and 1675 deletions

View File

@ -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,