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

34 lines
1.3 KiB
C#
Raw Normal View History

using JiShe.ServicePro.CTWingManagement;
2025-06-05 11:49:13 +08:00
using JiShe.ServicePro.DeviceManagement;
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-06-04 17:09:21 +08:00
using JiShe.ServicePro.IoTDBManagement;
2025-07-07 13:45:55 +08:00
using JiShe.ServicePro.OneNETManagement;
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-06-04 17:09:21 +08:00
typeof(IoTDBManagementApplicationContractsModule),
2025-06-05 11:49:13 +08:00
typeof(DynamicMenuManagementApplicationContractsModule),
2025-07-07 13:45:55 +08:00
typeof(CTWingManagementApplicationContractsModule),
typeof(OneNETManagementApplicationContractsModule),
2025-06-05 11:49:13 +08:00
typeof(DeviceManagementApplicationContractsModule)
2025-05-27 14:02:24 +08:00
)]
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
}
}
}