diff --git a/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/IdentityAppServiceBase.cs b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/IdentityAppServiceBase.cs new file mode 100644 index 000000000..bd0785afe --- /dev/null +++ b/aspnet-core/modules/identity/LINGYUN.Abp.Identity.Application/LINGYUN/Abp/Identity/IdentityAppServiceBase.cs @@ -0,0 +1,12 @@ +using Volo.Abp.Application.Services; +using Volo.Abp.Identity.Localization; + +namespace LINGYUN.Abp.Identity; +public abstract class IdentityAppServiceBase : ApplicationService +{ + protected IdentityAppServiceBase() + { + ObjectMapperContext = typeof(AbpIdentityApplicationModule); + LocalizationResource = typeof(IdentityResource); + } +}