Implement parse campaign manager

This commit is contained in:
2025-11-20 11:22:37 +09:00
parent 8fdb855d05
commit f3249da6d9
6 changed files with 121 additions and 11 deletions

View File

@ -8,11 +8,13 @@ namespace Hcs.WebApp.BackgroundServices.CampaignManagers
IServiceScopeFactory scopeFactory,
OperationExecutionState operationExecutionState,
ResultGetState resultGetState,
DataParsingState dataParsingState,
Campaign campaign) : IManager
{
protected readonly IServiceScope scope = scopeFactory.CreateScope();
protected readonly OperationExecutionState operationExecutionState = operationExecutionState;
protected readonly ResultGetState resultGetState = resultGetState;
protected readonly DataParsingState dataParsingState = dataParsingState;
protected readonly Campaign campaign = campaign;
private HeadquartersService? headquartersService;