refactor(architecture): harden module boundaries
Some checks failed
ci / release-gate (push) Has been cancelled
Some checks failed
ci / release-gate (push) Has been cancelled
This commit is contained in:
@@ -4,8 +4,8 @@ using Tiku.Application.PlatformAdmin.Operations;
|
||||
using Tiku.Application.PlatformBilling;
|
||||
using Tiku.Application.Jobs;
|
||||
using Tiku.Infrastructure.PlatformAdmin;
|
||||
using Tiku.Infrastructure.PlatformAdmin.Operations;
|
||||
using Tiku.Infrastructure.PlatformAdmin.TenantProvisioning;
|
||||
using Tiku.Infrastructure.PlatformAdmin.Operations;
|
||||
using Tiku.Infrastructure.PlatformBilling;
|
||||
|
||||
namespace Tiku.Infrastructure;
|
||||
@@ -17,6 +17,7 @@ internal static class PlatformModule
|
||||
services.AddScoped<PlatformAdministrationDependencies>();
|
||||
services.AddScoped<IPlatformDashboardService, PlatformDashboardService>();
|
||||
services.AddScoped<ITenantProvisioningAdministrationService, TenantProvisioningAdministrationService>();
|
||||
services.AddScoped<ITenantProvisioningReadinessProbe, TenantProvisioningReadinessProbe>();
|
||||
services.AddScoped<IPlatformTenantDomainService, PlatformTenantDomainService>();
|
||||
services.AddScoped<IPlatformStaffAccessService, PlatformStaffAccessService>();
|
||||
services.AddScoped<IPlatformAuditAlertService, PlatformAuditAlertService>();
|
||||
@@ -24,7 +25,11 @@ internal static class PlatformModule
|
||||
services.AddScoped<IBackgroundJobHandler, TenantExportJobHandler>();
|
||||
services.AddScoped<IPlatformOperationsQueryService, PlatformOperationsQueryService>();
|
||||
services.AddOptions<TenantProvisioningOptions>();
|
||||
services.AddScoped<IPlatformQuestionBankService, PlatformQuestionBankService>();
|
||||
services.AddScoped<IPlatformQuestionBankCatalogService, PlatformQuestionBankCatalogService>();
|
||||
services.AddScoped<IPlatformQuestionBankNodeService, PlatformQuestionBankNodeService>();
|
||||
services.AddScoped<IPlatformQuestionAdministrationService, PlatformQuestionAdministrationService>();
|
||||
services.AddScoped<IPlatformQuestionImportService, PlatformQuestionImportService>();
|
||||
services.AddScoped<IPlatformQuestionAssetService, PlatformQuestionAssetService>();
|
||||
services.AddScoped<IPlatformCrmAdminService, PlatformCrmAdminService>();
|
||||
services.AddScoped<IPlatformSmsAdminService, PlatformSmsAdminService>();
|
||||
services.AddScoped<IPlatformPaymentSettingsService, PlatformPaymentSettingsService>();
|
||||
|
||||
Reference in New Issue
Block a user