26 lines
944 B
C#
26 lines
944 B
C#
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();
|
|
}
|
|
}
|
|
}
|