using JiShe.ServicePro.DynamicMenuManagement; using JiShe.ServicePro.FileManagement; using JiShe.ServicePro.IoTDBManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.IoT { [DependsOn( typeof(IoTDomainSharedModule), typeof(AbpObjectExtendingModule), typeof(BasicManagementApplicationContractsModule), typeof(NotificationManagementApplicationContractsModule), typeof(DataDictionaryManagementApplicationContractsModule), typeof(LanguageManagementApplicationContractsModule), typeof(TemplateManagementApplicationContractsModule), typeof(FileManagementApplicationContractsModule), typeof(IoTDBManagementApplicationContractsModule), typeof(DynamicMenuManagementApplicationContractsModule) )] public class IoTApplicationContractsModule : AbpModule { public override void PreConfigureServices(ServiceConfigurationContext context) { IoTDtoExtensions.Configure(); } } }