MultiSourceYearSummary

This commit is contained in:
Michał Zieliński
2023-11-06 23:11:30 +01:00
parent 8c26698dc8
commit 1142177f15
3 changed files with 145 additions and 6 deletions

View File

@@ -10,19 +10,16 @@ namespace WebAPI.dataProcessors
private readonly AppDbContext db;
private readonly SpreadsheetsResource.ValuesResource googleSheetValues;
private readonly LayersController controller;
private readonly LogsController logsController;
public T3SourceYearSummaryProcessor(
AppDbContext _db,
SpreadsheetsResource.ValuesResource _googleSheetValues,
LayersController _controller,
LogsController _logsController
LayersController _controller
)
{
db = _db;
googleSheetValues = _googleSheetValues;
controller = _controller;
logsController = _logsController;
}
public void process(Layer processWorker)