using Lion.AbpPro.DataDictionaryManagement; using Lion.AbpPro.LanguageManagement; namespace JiShe.IOT { [DependsOn( typeof(IOTApplicationContractsModule), typeof(BasicManagementHttpApiModule), typeof(NotificationManagementHttpApiModule), typeof(DataDictionaryManagementHttpApiModule), typeof(LanguageManagementHttpApiModule) )] public class IOTHttpApiModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { ConfigureLocalization(); } private void ConfigureLocalization() { Configure(options => { options.Resources .Get() .AddBaseTypes( typeof(AbpUiResource) ); }); } } }