fix: restore clock and validation contracts
ci / backend (push) Failing after 1s
ci / static (push) Failing after 7s
ci / backend (pull_request) Failing after 1s
ci / static (pull_request) Failing after 10s
Build & Test with Secrets / build (pull_request) Failing after 2s
ci / publish (pull_request) Has been cancelled
ci / frontend (pull_request) Has been cancelled
Build & Test with Secrets / security-scan (pull_request) Has been cancelled
Build & Test with Secrets / notification (pull_request) Has been cancelled
Build & Test with Secrets / frontend (pull_request) Has been cancelled
ci / publish (push) Has been cancelled
ci / frontend (push) Has been cancelled
ci / backend (push) Failing after 1s
ci / static (push) Failing after 7s
ci / backend (pull_request) Failing after 1s
ci / static (pull_request) Failing after 10s
Build & Test with Secrets / build (pull_request) Failing after 2s
ci / publish (pull_request) Has been cancelled
ci / frontend (pull_request) Has been cancelled
Build & Test with Secrets / security-scan (pull_request) Has been cancelled
Build & Test with Secrets / notification (pull_request) Has been cancelled
Build & Test with Secrets / frontend (pull_request) Has been cancelled
ci / publish (push) Has been cancelled
ci / frontend (push) Has been cancelled
This commit is contained in:
@@ -143,11 +143,13 @@ builder.Services.AddScoped<KArtSell.Host.Features.MarketData.IMarketDataIngestio
|
||||
builder.Services.AddScoped<KArtSell.Host.Features.Portfolio.IPortfolioRebalanceService>(sp =>
|
||||
new KArtSell.Host.Features.Portfolio.PortfolioRebalanceService(
|
||||
sp.GetRequiredService<NpgsqlDataSource>(),
|
||||
sp.GetRequiredService<IBackgroundJobClient>()));
|
||||
sp.GetRequiredService<IBackgroundJobClient>(),
|
||||
sp.GetRequiredService<IClock>()));
|
||||
|
||||
builder.Services.AddScoped<KArtSell.Host.Features.Portfolio.IRiskMetricsService>(sp =>
|
||||
new KArtSell.Host.Features.Portfolio.RiskMetricsService(
|
||||
sp.GetRequiredService<NpgsqlDataSource>()));
|
||||
sp.GetRequiredService<NpgsqlDataSource>(),
|
||||
sp.GetRequiredService<IClock>()));
|
||||
|
||||
// Risk & Stress (VS-06~07)
|
||||
builder.Services.AddScoped<KArtSell.Host.Features.Portfolio.IStressTestService>(sp =>
|
||||
@@ -162,7 +164,8 @@ builder.Services.AddScoped<KArtSell.Host.Features.Portfolio.IAlertService>(sp =>
|
||||
// Dashboard (VS-08)
|
||||
builder.Services.AddScoped<KArtSell.Host.Features.Portfolio.IDashboardService>(sp =>
|
||||
new KArtSell.Host.Features.Portfolio.DashboardService(
|
||||
sp.GetRequiredService<NpgsqlDataSource>()));
|
||||
sp.GetRequiredService<NpgsqlDataSource>(),
|
||||
sp.GetRequiredService<IClock>()));
|
||||
|
||||
// Security Master (VS-02) - Temporarily disabled: ISecurityMasterRulesStore implementation pending
|
||||
// builder.Services.AddScoped<KArtSell.Host.Features.SecurityMaster.ISecurityMasterSyncHandler>(sp =>
|
||||
|
||||
Reference in New Issue
Block a user