using JiShe.ServicePro.CodeManagement; using JiShe.ServicePro.DynamicMenuManagement; using JiShe.ServicePro.TemplateManagement; namespace JiShe.ServicePro { [DependsOn( typeof(ServiceProDomainModule), typeof(ServiceProApplicationContractsModule), typeof(BasicManagementApplicationModule), typeof(NotificationManagementApplicationModule), typeof(DataDictionaryManagementApplicationModule), typeof(LanguageManagementApplicationModule), typeof(CodeManagementApplicationModule), typeof(TemplateManagementApplicationModule), typeof(DynamicMenuManagementApplicationModule), typeof(ServiceProFreeSqlModule) )] public class ServiceProApplicationModule : AbpModule { public override void ConfigureServices(ServiceConfigurationContext context) { Configure(options => { options.AddMaps(); }); } } }