Implement data parsing service
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user