Remove MSSQLServer service registration from DI

The MSSQLServer service is no longer registered in the dependency injection container within DependencyInjection.cs. This change means MSSQLServer will not be available for injection throughout the application. The comment regarding service lifetimes remains for future review.
This commit is contained in:
2026-04-01 11:27:13 +02:00
parent 53ff48dc3c
commit 4e847fa737

View File

@@ -17,7 +17,6 @@ public static class DependencyInjection
services.AddSingleton<TempFiles>();
services.AddScoped<PDFBurner>();
services.AddScoped<PDFMerger>();
services.AddScoped<MSSQLServer>();
//TODO: Check lifetime of services. They might be singleton or scoped.
services.AddTransient<GdViewer>();