Fixed HTR downed tools header, added quarter to date information, and put extended downtime into tool downed tables.
This commit is contained in:
@ -66,10 +66,28 @@ namespace ReportingServices.API.Controllers
|
||||
return _scrapeDBRepository.GetReactorEvents(startDate, endDate, reactorNumber);
|
||||
}
|
||||
|
||||
[HttpGet("GetLastUpTransaction")]
|
||||
public int GetLastUpTransaction(string reactorNumber)
|
||||
{
|
||||
return _scrapeDBRepository.GetLastUpTransaction(reactorNumber);
|
||||
}
|
||||
|
||||
[HttpGet("ToolEvents")]
|
||||
public ToolEvent GetLatestToolEvent(string toolID)
|
||||
{
|
||||
return _scrapeDBRepository.GetLatestToolEvent(toolID);
|
||||
}
|
||||
|
||||
[HttpGet("GetOutsAndScrapTotals")]
|
||||
public OutsAndScrapTotal GetOutsAndScrapTotal(string startDate, string endDate)
|
||||
{
|
||||
return _scrapeDBRepository.GetOutsAndScrapTotals(startDate, endDate);
|
||||
}
|
||||
|
||||
[HttpGet("GetQuarterStartDate")]
|
||||
public DateTime GetQuarterStartDate()
|
||||
{
|
||||
return _scrapeDBRepository.GetQuarterStartDate();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user