refactor(di): unify Application and Infrastructure DI registrations under a central method

- Added central AddEnvelopeGenerator extension to aggregate existing DI setups
- Introduced EGConfiguration for modular service registration
- Standardized configuration pattern for Application and Infrastructure layers
- Simplified distributed cache and localization registration
This commit is contained in:
2025-11-03 08:44:22 +01:00
parent 209785dda5
commit 22b494a262
11 changed files with 82 additions and 20 deletions

View File

@@ -61,6 +61,9 @@ public static class DependencyInjection
// Add memory cache
services.AddMemoryCache();
// Register mail services
services.AddScoped<IEnvelopeMailService, EnvelopeMailService>();
return services;
}
}