Added backend API project to segregate responsibilites - Data is now handled in API project and business is all handled in UI project.
This commit is contained in:
@ -6,8 +6,8 @@ namespace ReportingServices.Shared.Repositories
|
||||
public interface IFabTimeReportingRepository
|
||||
{
|
||||
public Task<List<ReactorOutsByRDS>> GetMovesTrendData(string startDate = "", string endDate = "");
|
||||
public Task GetToolStateTrendData(DailyReport rpt, string toolType);
|
||||
public Task GetToolStateData(DailyReport rpt, string toolType);
|
||||
public Task<List<EquipmentStateByDay>> GetToolStateTrendData(string toolType);
|
||||
public Task<List<ToolStateCurrent>> GetToolStateData(string toolType);
|
||||
public Task<T> GetJsonData<T>(string url);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user