25 lines
926 B
C#
25 lines
926 B
C#
using JiShe.ServicePro.DynamicMenuManagement;
|
|
using JiShe.ServicePro.FileManagement;
|
|
using JiShe.ServicePro.TemplateManagement;
|
|
|
|
namespace JiShe.IoT
|
|
{
|
|
[DependsOn(
|
|
typeof(IoTDomainSharedModule),
|
|
typeof(BasicManagementDomainModule),
|
|
typeof(NotificationManagementDomainModule),
|
|
typeof(DataDictionaryManagementDomainModule),
|
|
typeof(LanguageManagementDomainModule),
|
|
typeof(TemplateManagementDomainModule),
|
|
typeof(FileManagementDomainModule),
|
|
typeof(DynamicMenuManagementDomainModule)
|
|
)]
|
|
public class IoTDomainModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
Configure<AbpMultiTenancyOptions>(options => { options.IsEnabled = MultiTenancyConsts.IsEnabled; });
|
|
Configure<AbpAutoMapperOptions>(options => { options.AddMaps<IoTDomainModule>(); });
|
|
}
|
|
}
|
|
} |