refactor(dotnet): remove aggregate collection repository contract
Validators (Pushes and Pull Requests) / validate-ui-and-storage (push) Successful in 17s
Validators (Pushes and Pull Requests) / validate-core (push) Failing after 1m38s

This commit is contained in:
2026-07-13 01:09:57 +09:00
parent ae32f86685
commit ca3b394ec2
9 changed files with 18 additions and 82 deletions
@@ -12,12 +12,12 @@ namespace QuantEngine.Application.Services;
public sealed class JsonSeedIngestionService
{
private readonly GatherTradingDataParser _parser;
private readonly ICollectionRepository _repository;
private readonly ICollectionWriteRepository _repository;
private readonly ILogger<JsonSeedIngestionService> _logger;
public JsonSeedIngestionService(
GatherTradingDataParser parser,
ICollectionRepository repository,
ICollectionWriteRepository repository,
ILogger<JsonSeedIngestionService> logger)
{
_parser = parser;