refactor(dotnet): move collection schema init to service
Validators (Pushes and Pull Requests) / validate-ui-and-storage (push) Successful in 18s
Validators (Pushes and Pull Requests) / validate-core (push) Failing after 1m49s

This commit is contained in:
2026-07-13 01:06:02 +09:00
parent c2cd643729
commit ae32f86685
4 changed files with 65 additions and 41 deletions
@@ -63,6 +63,11 @@ public interface ICollectionReadRepository
Task<List<PriceHistorySummaryRecord>> GetPriceHistorySummaryAsync();
}
public interface ICollectionSchemaInitializer
{
Task InitializeAsync();
}
/// <summary>
/// Collection run record (maps Python CollectionRun).
/// </summary>