Ran formatting through code
This commit is contained in:
@ -2,92 +2,57 @@
|
||||
using ReportingServices.Shared.Models.PlanningReport;
|
||||
using ReportingServices.Shared.Models.ProductionReport;
|
||||
using ReportingServices.Shared.Repositories;
|
||||
using ReportingServices.Shared.ViewModels.ProductionReport;
|
||||
|
||||
namespace ReportingServices.API.Controllers
|
||||
namespace ReportingServices.API.Controllers;
|
||||
|
||||
[Route("api/[controller]")]
|
||||
[ApiController]
|
||||
public class ScrapeDBController : ControllerBase
|
||||
{
|
||||
[Route("api/[controller]")]
|
||||
[ApiController]
|
||||
public class ScrapeDBController : ControllerBase
|
||||
private readonly IScrapeDatabaseRepository _scrapeDBRepository;
|
||||
|
||||
public ScrapeDBController(IScrapeDatabaseRepository scrapeDBRepository) => _scrapeDBRepository = scrapeDBRepository;
|
||||
|
||||
[HttpGet("ReactorOuts")]
|
||||
public YieldInformation GetReactorOuts(string startDate, string endDate)
|
||||
{
|
||||
private readonly IScrapeDatabaseRepository _scrapeDBRepository;
|
||||
|
||||
public ScrapeDBController(IScrapeDatabaseRepository scrapeDBRepository)
|
||||
List<ReactorOutsByRDS> outs = _scrapeDBRepository.GetRDSRunBetweenDates(startDate, endDate);
|
||||
YieldInformation yieldInformation = new()
|
||||
{
|
||||
_scrapeDBRepository = scrapeDBRepository;
|
||||
}
|
||||
Outs = outs,
|
||||
Scrap = _scrapeDBRepository.GetScrapByDay(outs)
|
||||
};
|
||||
|
||||
[HttpGet("ReactorOuts")]
|
||||
public YieldInformation GetReactorOuts(string startDate, string endDate)
|
||||
{
|
||||
List<ReactorOutsByRDS> outs = _scrapeDBRepository.GetRDSRunBetweenDates(startDate, endDate);
|
||||
YieldInformation yieldInformation = new()
|
||||
{
|
||||
Outs = outs,
|
||||
Scrap = _scrapeDBRepository.GetScrapByDay(outs)
|
||||
};
|
||||
|
||||
return yieldInformation;
|
||||
}
|
||||
|
||||
[HttpGet("PSNWO")]
|
||||
public List<ReactorPSNWORuns> GetReactorPSNWORuns(string startDate, string endDate)
|
||||
{
|
||||
return _scrapeDBRepository.GetReactorPSNWORuns(startDate, endDate);
|
||||
}
|
||||
|
||||
[HttpGet("PartChanges")]
|
||||
public int GetNumberOfPartChanges(string startDate, string endDate)
|
||||
{
|
||||
return _scrapeDBRepository.GetNumberOfPartChanges(startDate, endDate);
|
||||
}
|
||||
|
||||
[HttpGet("Targets")]
|
||||
public QuarterlyTargets GetQuarterlyTargets()
|
||||
{
|
||||
return _scrapeDBRepository.GetQuarterlyTargets();
|
||||
}
|
||||
|
||||
[HttpGet("Reactors")]
|
||||
public List<Reactor> GetReactors()
|
||||
{
|
||||
return _scrapeDBRepository.GetReactors();
|
||||
}
|
||||
|
||||
[HttpGet("RDS")]
|
||||
public List<RDS> GetRDSForLastDay(string date)
|
||||
{
|
||||
return _scrapeDBRepository.GetRDSForLastDay(date);
|
||||
}
|
||||
|
||||
[HttpGet("ReactorEvents")]
|
||||
public List<ReactorEvent> GetReactorEvents(string startDate, string endDate, string reactorNumber)
|
||||
{
|
||||
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();
|
||||
}
|
||||
return yieldInformation;
|
||||
}
|
||||
}
|
||||
|
||||
[HttpGet("PSNWO")]
|
||||
public List<ReactorPSNWORuns> GetReactorPSNWORuns(string startDate, string endDate) => _scrapeDBRepository.GetReactorPSNWORuns(startDate, endDate);
|
||||
|
||||
[HttpGet("PartChanges")]
|
||||
public int GetNumberOfPartChanges(string startDate, string endDate) => _scrapeDBRepository.GetNumberOfPartChanges(startDate, endDate);
|
||||
|
||||
[HttpGet("Targets")]
|
||||
public QuarterlyTargets GetQuarterlyTargets() => _scrapeDBRepository.GetQuarterlyTargets();
|
||||
|
||||
[HttpGet("Reactors")]
|
||||
public List<Reactor> GetReactors() => _scrapeDBRepository.GetReactors();
|
||||
|
||||
[HttpGet("RDS")]
|
||||
public List<RDS> GetRDSForLastDay(string date) => _scrapeDBRepository.GetRDSForLastDay(date);
|
||||
|
||||
[HttpGet("ReactorEvents")]
|
||||
public List<ReactorEvent> GetReactorEvents(string startDate, string endDate, string reactorNumber) => _scrapeDBRepository.GetReactorEvents(startDate, endDate, reactorNumber);
|
||||
|
||||
[HttpGet("GetLastUpTransaction")]
|
||||
public int GetLastUpTransaction(string reactorNumber) => _scrapeDBRepository.GetLastUpTransaction(reactorNumber);
|
||||
|
||||
[HttpGet("ToolEvents")]
|
||||
public ToolEvent GetLatestToolEvent(string toolID) => _scrapeDBRepository.GetLatestToolEvent(toolID);
|
||||
|
||||
[HttpGet("GetOutsAndScrapTotals")]
|
||||
public OutsAndScrapTotal GetOutsAndScrapTotal(string startDate, string endDate) => _scrapeDBRepository.GetOutsAndScrapTotals(startDate, endDate);
|
||||
|
||||
[HttpGet("GetQuarterStartDate")]
|
||||
public DateTime GetQuarterStartDate() => _scrapeDBRepository.GetQuarterStartDate();
|
||||
}
|
Reference in New Issue
Block a user