34 lines
1.3 KiB
C#
34 lines
1.3 KiB
C#
using JiShe.ServicePro.CTWingManagement;
|
|
using JiShe.ServicePro.DeviceManagement;
|
|
using JiShe.ServicePro.DynamicMenuManagement;
|
|
using JiShe.ServicePro.FileManagement;
|
|
using JiShe.ServicePro.IoTDBManagement;
|
|
using JiShe.ServicePro.OneNETManagement;
|
|
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),
|
|
typeof(CTWingManagementApplicationContractsModule),
|
|
typeof(OneNETManagementApplicationContractsModule),
|
|
typeof(DeviceManagementApplicationContractsModule)
|
|
)]
|
|
public class IoTApplicationContractsModule : AbpModule
|
|
{
|
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
IoTDtoExtensions.Configure();
|
|
}
|
|
}
|
|
}
|