MET08DDUPSP1TBI - v2.47.0 - Job -

Work Oder, Reactor and Slot
This commit is contained in:
2022-10-10 17:35:21 -07:00
parent 67f10dbc2e
commit ccc2e138e5
8 changed files with 400 additions and 179 deletions

View File

@ -4,18 +4,22 @@ public class Descriptor
{
public string Employee { get; private set; }
public string Layer { get; private set; }
public string Lot { get; private set; }
public string PSN { get; private set; }
public string RDS { get; private set; }
public string Reactor { get; private set; }
public string Zone { get; private set; }
public Descriptor(string employee, string lot, string psn, string rds, string reactor)
public Descriptor(string employee, string layer, string lot, string psn, string rds, string reactor, string zone)
{
Employee = employee;
Layer = layer;
Lot = lot;
PSN = psn;
RDS = rds;
Reactor = reactor;
Zone = zone;
}
}