Files
QuantEngineByItz/src/dotnet/QuantEngine.Application/Services/DataCollectionService.cs
T
kjh2064 6f252162ef
Validators (Pushes and Pull Requests) / validate-ui-and-storage (push) Successful in 23s
Validators (Pushes and Pull Requests) / validate-core (push) Has been cancelled
refactor(dotnet): add collection audit trail
2026-07-13 00:14:05 +09:00

22 lines
541 B
C#

using QuantEngine.Application.Interfaces;
namespace QuantEngine.Application.Services;
public class DataCollectionService
{
private readonly ICollectionOrchestrator _orchestrator;
public DataCollectionService(ICollectionOrchestrator orchestrator)
{
_orchestrator = orchestrator;
}
public async Task<CollectionRunResult> RunCollectionAsync(
string runId,
string account,
List<string> tickers)
{
return await _orchestrator.RunCollectionAsync(runId, account, tickers);
}
}