Added Hot Work Order information into downed tool table and as a line item in the daily report.

This commit is contained in:
Daniel Wathen
2023-01-18 16:03:42 -07:00
parent 930360a7a9
commit a963525b43
14 changed files with 63 additions and 743 deletions

View File

@ -58,4 +58,7 @@ public class ScrapeDBController : ControllerBase
[HttpGet("GetCurrentHoldLots")]
public List<HoldLot> GetCurrentHoldLots() => _scrapeDBRepository.GetCurrentHoldLots();
[HttpGet("GetCurrentHotWORunning")]
public List<string> GetCurrentHotWORunning() => _scrapeDBRepository.GetCurrentHotWORunning();
}