using JiShe.ServicePro.CodeManagement; using JiShe.ServicePro.DataDictionaryManagement; using JiShe.ServicePro.DynamicMenuManagement; using JiShe.ServicePro.LanguageManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.IoT { [DependsOn( typeof(IoTApplicationContractsModule), typeof(BasicManagementHttpApiModule), typeof(NotificationManagementHttpApiModule), typeof(DataDictionaryManagementHttpApiModule), typeof(LanguageManagementHttpApiModule), typeof(CodeManagementHttpApiModule), typeof(TemplateManagementHttpApiModule), typeof(DynamicMenuManagementHttpApiModule) )] public class IoTHttpApiModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { ConfigureLocalization(); } private void ConfigureLocalization() { Configure(options => { options.Resources .Get() .AddBaseTypes( typeof(AbpUiResource) ); }); } } }