JiShe.IOT.Admin/src/JiShe.IoT.Application.Contracts/IoTApplicationContractsModule.cs

26 lines
916 B
C#
Raw Normal View History

2025-05-27 14:02:24 +08:00
using JiShe.ServicePro.DynamicMenuManagement;
2025-05-27 22:53:46 +08:00
using JiShe.ServicePro.FileManagement;
2025-05-27 14:02:24 +08:00
using JiShe.ServicePro.TemplateManagement;
2025-05-27 14:27:50 +08:00
namespace JiShe.IoT
2025-05-27 14:02:24 +08:00
{
[DependsOn(
2025-05-27 14:27:50 +08:00
typeof(IoTDomainSharedModule),
2025-05-27 14:02:24 +08:00
typeof(AbpObjectExtendingModule),
typeof(BasicManagementApplicationContractsModule),
typeof(NotificationManagementApplicationContractsModule),
typeof(DataDictionaryManagementApplicationContractsModule),
typeof(LanguageManagementApplicationContractsModule),
typeof(TemplateManagementApplicationContractsModule),
2025-05-27 22:53:46 +08:00
typeof(FileManagementApplicationContractsModule),
2025-05-27 14:02:24 +08:00
typeof(DynamicMenuManagementApplicationContractsModule)
)]
2025-05-27 14:27:50 +08:00
public class IoTApplicationContractsModule : AbpModule
2025-05-27 14:02:24 +08:00
{
public override void PreConfigureServices(ServiceConfigurationContext context)
{
2025-05-27 14:27:50 +08:00
IoTDtoExtensions.Configure();
2025-05-27 14:02:24 +08:00
}
}
}