Added Dual Layer data in the report (pulling from the database and displaying it back on the main form)

This commit is contained in:
Daniel Wathen
2022-12-08 12:03:19 -07:00
parent 4592b035b6
commit 32d8ad8b3c
6 changed files with 67 additions and 10 deletions

View File

@ -11,6 +11,7 @@ namespace ReportingServices.Models.ProductionReport
public Dictionary<string, List<EquipmentStateByDay>> ToolAvailibilityByType { get; set; }
public Dictionary<string, ToolStateByType> ToolStateByType { get; set; }
public Dictionary<string, List<string>> ToolStatesByOwner { get; set; }
public Dictionary<string, List<string>> DualLayerReactors { get; set; }
public List<ManualReportEntries> PreviousEntries { get; set; }
public List<ManualReportEntries> CurrentEntries { get; set; }
public int NumberOfToolsWaferSize6IN { get; set; }