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:
@ -34,7 +34,7 @@ namespace ReportingServices.UI.Controllers
|
||||
try
|
||||
{
|
||||
DailyReportHelper.SetRepositories(_fabTimeReportingRepository, _scrapeDatabaseRepository);
|
||||
DailyReport dailyReport = DailyReportHelper.SetUpDailyReport();
|
||||
DailyReport dailyReport = DailyReportHelper.SetUpDailyReport().Result;
|
||||
Dictionary<string, List<string>> toolStateOwners = JsonFileHandler.LoadJSONFile<Dictionary<string, List<string>>>(_toolStateOwnerFilePath);
|
||||
|
||||
dailyReport.ToolStatesByOwner = toolStateOwners;
|
||||
|
Reference in New Issue
Block a user