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,9 +3,9 @@ using Hcs.WebApp.Data.Hcs;
namespace Hcs.WebApp.BackgroundServices.DataParsers
{
public class HousesDataParser_15_7_0_1(IClient client, IServiceScope scope, Operation operation) : DataParserBase(client, scope, operation)
public class HousesDataParser_15_7_0_1(IServiceScope scope, Operation operation) : DataParserBase(scope, operation)
{
public override Task<bool> ParseAsync()
public override Task ParseAsync()
{
throw new NotImplementedException();
}