using JiShe.ServicePro.CTWingManagement; using JiShe.ServicePro.DataDictionaryManagement; using JiShe.ServicePro.DeviceManagement; using JiShe.ServicePro.DynamicMenuManagement; using JiShe.ServicePro.FileManagement; using JiShe.ServicePro.IoTDBManagement; using JiShe.ServicePro.LanguageManagement; using JiShe.ServicePro.OneNETManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.IoT { [DependsOn( typeof(IoTApplicationContractsModule), typeof(BasicManagementHttpApiModule), typeof(NotificationManagementHttpApiModule), typeof(DataDictionaryManagementHttpApiModule), typeof(LanguageManagementHttpApiModule), typeof(TemplateManagementHttpApiModule), typeof(FileManagementHttpApiModule), typeof(IoTDBManagementHttpApiModule), typeof(DynamicMenuManagementHttpApiModule), typeof(CTWingManagementHttpApiModule), typeof(OneNETManagementHttpApiModule), typeof(DeviceManagementHttpApiModule) )] public class IoTHttpApiModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { ConfigureLocalization(); } private void ConfigureLocalization() { Configure(options => { options.Resources .Get() .AddBaseTypes( typeof(AbpUiResource) ); }); } } }