Change campaign type

This commit is contained in:
2025-11-16 11:09:42 +09:00
parent dd14fceaf4
commit 00fbba1401
5 changed files with 11 additions and 5 deletions

View File

@ -0,0 +1,18 @@
using Hcs.WebApp.Data.Hcs;
namespace Hcs.WebApp.BackgroundServices.CampaignManagers
{
public class ParseHousesDataManager_15_7_0_1(
IServiceScopeFactory scopeFactory,
OperationExecutionState operationExecutionState,
ResultWaitState resultWaitState,
Campaign campaign) : ManagerBase(scopeFactory, operationExecutionState, resultWaitState, campaign)
{
protected override int StepCount => throw new NotImplementedException();
public override Task ProcessAsync()
{
throw new NotImplementedException();
}
}
}