Added Open NCR report.

This commit is contained in:
Daniel Wathen
2023-01-23 21:27:01 -07:00
parent f40cee57a7
commit 348c233eb1
9 changed files with 126 additions and 10 deletions

View File

@ -70,4 +70,7 @@ public class ScrapeDBController : ControllerBase
[HttpGet("GetProjectedPartChanges")]
public List<ReactorPSNWORuns> GetProjectedPartChanges(string startDate, string endDate) => _scrapeDBRepository.GetProjectedPartChanges(startDate, endDate);
[HttpGet("GetCurrentNCRs")]
public List<NCR> GetCurrentNCRs() => _scrapeDBRepository.GetCurrentNCRs();
}