Files
hcs/Hcs.WebApp/BackgroundServices/CampaignManagers/ExportHousesDataManager_15_7_0_1.cs

19 lines
598 B
C#

using Hcs.WebApp.Data.Hcs;
namespace Hcs.WebApp.BackgroundServices.CampaignManagers
{
public class ExportHousesDataManager_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();
}
}
}