using ReportingServices.Models.PlanningReport; using ReportingServices.ReportingObjects; namespace ReportingServices.Dependency_Injections { public interface IScrapeDatabaseRepository { public void OpenConnection(); public void CloseConnection(); public List GetScrapByDay(List outs); public List GetReactorPSNWORuns(string startDate, string endDate); public int GetNumberOfPartChanges(string startDate, string endDate); public int[] GetNumberOfSingleLoadLocks(); } }