MET08THFTIRSTRATUS - v2.47.0 - Job -

Work Oder, Reactor and Slot
This commit is contained in:
2022-10-10 19:39:25 -07:00
parent 8e16a0bae9
commit dd4dba16d4
13 changed files with 940 additions and 64 deletions

View File

@ -5,17 +5,21 @@ public class Descriptor
public string Cassette { get; private set; }
public string Employee { get; private set; }
public string Layer { 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 cassette, string employee, string psn, string rds, string reactor)
public Descriptor(string cassette, string employee, string layer, string psn, string rds, string reactor, string zone)
{
Cassette = cassette;
Employee = employee;
Layer = layer;
PSN = psn;
RDS = rds;
Reactor = reactor;
Zone = zone;
}
}