BaseCalculation Engine

This commit is contained in:
Michał Zieliski
2024-05-24 20:38:32 +02:00
parent 25cf75e883
commit 7e084b4af2
5 changed files with 252 additions and 5 deletions

View File

@@ -375,7 +375,7 @@ namespace WebAPI.Controllers
}
if (processType == "T3-MultiSourceYearSummary")
{
T3MultiSourceYearSummaryProcessor processor = new T3MultiSourceYearSummaryProcessor(db, googleSheetValues, this);
T3MultiSourceYearSummaryProcessor processor = new T3MultiSourceYearSummaryProcessor(db, googleSheetValues, this, logsController);
processor.process(processWorker!);
logsController.AddEntry(new LogEntry
@@ -433,7 +433,7 @@ namespace WebAPI.Controllers
}
case "T3-MultiSourceSummary":
{
T3MultiSourceSummaryProcessor processor = new T3MultiSourceSummaryProcessor(db, googleSheetValues, this);
T3MultiSourceSummaryProcessor processor = new T3MultiSourceSummaryProcessor(db, googleSheetValues, this, logsController);
processor.process(processWorker!);
break;
}