using JiShe.ServicePro.CodeManagement; using JiShe.ServicePro.DynamicMenuManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.IoT { [DependsOn( typeof(IoTDomainSharedModule), typeof(BasicManagementDomainModule), typeof(NotificationManagementDomainModule), typeof(DataDictionaryManagementDomainModule), typeof(LanguageManagementDomainModule), typeof(CodeManagementDomainModule), typeof(TemplateManagementDomainModule), typeof(DynamicMenuManagementDomainModule) )] public class IoTDomainModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { Configure(options => { options.IsEnabled = MultiTenancyConsts.IsEnabled; }); Configure(options => { options.AddMaps(); }); } } }