Removed console logging for hold date and added display of daily and weekly part changes (completed and projected).
This commit is contained in:
@ -61,4 +61,13 @@ public class ScrapeDBController : ControllerBase
|
||||
|
||||
[HttpGet("GetCurrentHotWORunning")]
|
||||
public List<string> GetCurrentHotWORunning() => _scrapeDBRepository.GetCurrentHotWORunning();
|
||||
|
||||
[HttpGet("GetScheduledEvents")]
|
||||
public List<ScheduledEvent> GetScheduledEvents(string startDate, string endDate) => _scrapeDBRepository.GetScheduledEvents(startDate, endDate);
|
||||
|
||||
[HttpGet("GetReactorPartChanges")]
|
||||
public List<ReactorPSNWORuns> GetReactorPartChanges(string startDate, string endDate) => _scrapeDBRepository.GetReactorPartChanges(startDate, endDate);
|
||||
|
||||
[HttpGet("GetProjectedPartChanges")]
|
||||
public List<ReactorPSNWORuns> GetProjectedPartChanges(string startDate, string endDate) => _scrapeDBRepository.GetProjectedPartChanges(startDate, endDate);
|
||||
}
|
Reference in New Issue
Block a user