Add Hyphen

Skip Tests
Dual write PDSF for Metrology Viewer
Removed IQS.Copy
Version Error Message
Added Climatec to Test.cs
GetJobIdDirectory
Remove and
This commit is contained in:
2024-05-16 12:19:16 -07:00
parent 3355fb3318
commit d92078a7d9
75 changed files with 1430 additions and 333 deletions

View File

@ -0,0 +1,21 @@
namespace Adaptation.FileHandlers.TIBCO.Transport;
public class Common
{
public string Layer { get; }
public string PSN { get; }
public int? RDSNumber { get; }
public int? ReactorNumber { get; }
public string Zone { get; }
public Common(string layer, string psn, int? rdsNumber, int? reactor, string zone)
{
Layer = layer;
PSN = psn;
RDSNumber = rdsNumber;
ReactorNumber = reactor;
Zone = zone;
}
}