using DocumentOperator.Application.Common.Interfaces; using DocumentOperator.Infrastructure.Services.PdfProcessing; using Microsoft.Extensions.DependencyInjection; namespace DocumentOperator.Infrastructure; /// /// Dependency Injection configuration for Infrastructure Layer /// public static class DependencyInjection { /// /// Registers Infrastructure Layer services (DevExpress, File Storage, etc.) /// public static IServiceCollection AddInfrastructure(this IServiceCollection services) { // PDF Processing Service (DevExpress) services.AddScoped(); return services; } }