using Microsoft.Extensions.DependencyInjection; using TakeoutSaaS.Application.Dictionary.Abstractions; using TakeoutSaaS.Application.Dictionary.Services; namespace TakeoutSaaS.Application.Dictionary.Extensions; /// /// 字典应用服务注册扩展。 /// public static class DictionaryServiceCollectionExtensions { /// /// 注册字典模块应用层组件。 /// public static IServiceCollection AddDictionaryApplication(this IServiceCollection services) { services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); services.AddScoped(); return services; } }