using Microsoft.Extensions.DependencyInjection; using Volo.Abp.Application; using Volo.Abp.Mapperly; using Volo.Abp.Modularity; using Volo.Abp.SettingManagement; namespace Sozsoft.Settings; [DependsOn( typeof(SettingsDomainModule), typeof(SettingsApplicationContractsModule), typeof(AbpDddApplicationModule), typeof(AbpMapperlyModule), typeof(AbpSettingManagementApplicationModule) )] public class SettingsApplicationModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { context.Services.AddMapperlyObjectMapper(); } }