Infineon.EAF.Runtime 2.52.0

Infineon.EAF.Runtime 2.49.3
IDescription.GetDescriptions with body
This commit is contained in:
2023-10-07 10:56:15 -07:00
parent 172f45aa67
commit b943a882cb
37 changed files with 710 additions and 199 deletions

View File

@ -11,6 +11,8 @@ public class FIBacklogMesa
string assignedTo,
string secondResource,
string subject,
string epiLine,
string area,
string systemS,
string priority,
string status,
@ -42,6 +44,8 @@ public class FIBacklogMesa
AssignedTo = assignedTo;
SecondResource = secondResource;
Subject = subject;
EpiLine = epiLine;
Area = area;
SystemS = systemS;
Priority = priority;
Status = status;
@ -81,6 +85,10 @@ public class FIBacklogMesa
[JsonPropertyName("Subject - from Requestor")]
public string Subject { get; set; } // { init; get; }
[JsonPropertyName("Epi Line")]
public string EpiLine { get; set; } // { init; get; }
public string Area { get; set; } // { init; get; }
[JsonPropertyName("System(s)")]
public string SystemS { get; set; } // { init; get; }
@ -103,7 +111,7 @@ public class FIBacklogMesa
[JsonPropertyName("UAT as of")]
public string UATAsOf { get; set; } // { init; get; }
[JsonPropertyName("CMP_Date")]
[JsonPropertyName("CMP _Date")]
public string CMPDate { get; set; } // { init; get; }
public string F20 { get; set; } // { init; get; }
public string F21 { get; set; } // { init; get; }

View File

@ -121,7 +121,6 @@ public class FileRead : Shared.FileRead, IFileRead
}
if (_IsEAFHosted)
File.WriteAllText(fileName, json);
File.WriteAllText("D:/Web-sites/Backlog/json/data.json", json);
results = iProcessData.GetResults(this, _Logistics, results.Item4);
}
return results;