Fulfill export executor

This commit is contained in:
2025-10-27 10:17:08 +09:00
parent 7c35c9a7df
commit 9e9845d446
6 changed files with 23 additions and 7 deletions

View File

@ -3,9 +3,10 @@ using Hcs.WebApp.Data.Hcs;
namespace Hcs.WebApp.BackgroundServices.OperationExecutors
{
public abstract class ExecutorBase(IClient client, Operation operation) : IExecutor
public abstract class ExecutorBase(IClient client, IServiceScopeFactory scopeFactory, Operation operation) : IExecutor
{
protected readonly IClient client = client;
protected readonly IServiceScopeFactory scopeFactory = scopeFactory;
protected readonly Operation operation = operation;
public abstract Task<string> ExecuteAsync(CancellationToken cancellationToken);