Implement data parsing service

This commit is contained in:
2025-11-17 16:06:31 +09:00
parent 8d56168593
commit d2d9432687
5 changed files with 45 additions and 8 deletions

View File

@ -3,12 +3,11 @@ using Hcs.WebApp.Data.Hcs;
namespace Hcs.WebApp.BackgroundServices.DataParsers
{
public abstract class DataParserBase(IClient client, IServiceScope scope, Operation operation) : IDataParser
public abstract class DataParserBase(IServiceScope scope, Operation operation) : IDataParser
{
protected readonly IClient client = client;
protected readonly IServiceScope scope = scope;
protected readonly Operation operation = operation;
public abstract Task<bool> ParseAsync();
public abstract Task ParseAsync();
}
}