using Lion.AbpPro.Core; namespace Lion.AbpPro.NotificationManagement { [DependsOn( typeof(AbpValidationModule), typeof(AbpProCoreModule) )] public class NotificationManagementDomainSharedModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { Configure(options => { options.FileSets.AddEmbedded(); }); Configure(options => { options.Resources .Add(NotificationManagementConsts.DefaultCultureName) .AddBaseTypes(typeof(AbpValidationResource)) .AddVirtualJson("/Localization/NotificationManagement"); }); Configure(options => { options.MapCodeNamespace(NotificationManagementConsts.NameSpace, typeof(NotificationManagementResource)); }); } } }