18 lines
703 B
C#
18 lines
703 B
C#
using ReportingServices.Shared.Models.PlanningReport;
|
|
using ReportingServices.Shared.Models.ProductionReport;
|
|
|
|
namespace ReportingServices.Shared.Repositories
|
|
{
|
|
public interface IScrapeDatabaseRepository
|
|
{
|
|
public void OpenConnection();
|
|
public void CloseConnection();
|
|
public List<ScrapByDay> GetScrapByDay(List<ReactorOutsByRDS> outs);
|
|
public List<ReactorPSNWORuns> GetReactorPSNWORuns(string startDate, string endDate);
|
|
public int GetNumberOfPartChanges(string startDate, string endDate);
|
|
public QuarterlyTargets GetQuarterlyTargets();
|
|
public List<Reactor> GetReactors();
|
|
public List<RDS> GetRDSForLastDay(string date);
|
|
}
|
|
}
|