JiShe.IOT.Admin/src/JiShe.ServicePro.Application.Contracts/ServiceProApplicationContractsModule.cs

26 lines
944 B
C#
Raw Normal View History

2025-05-27 14:02:24 +08:00
using JiShe.ServicePro.CodeManagement;
using JiShe.ServicePro.DynamicMenuManagement;
using JiShe.ServicePro.TemplateManagement;
namespace JiShe.ServicePro
{
[DependsOn(
typeof(ServiceProDomainSharedModule),
typeof(AbpObjectExtendingModule),
typeof(BasicManagementApplicationContractsModule),
typeof(NotificationManagementApplicationContractsModule),
typeof(DataDictionaryManagementApplicationContractsModule),
typeof(LanguageManagementApplicationContractsModule),
typeof(CodeManagementApplicationContractsModule),
typeof(TemplateManagementApplicationContractsModule),
typeof(DynamicMenuManagementApplicationContractsModule)
)]
public class ServiceProApplicationContractsModule : AbpModule
{
public override void PreConfigureServices(ServiceConfigurationContext context)
{
ServiceProDtoExtensions.Configure();
}
}
}