28 lines
903 B
C#
28 lines
903 B
C#
using Volo.Abp.Account;
|
|
using Volo.Abp.FeatureManagement;
|
|
using Volo.Abp.Identity;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.ObjectExtending;
|
|
using Volo.Abp.PermissionManagement;
|
|
using Volo.Abp.SettingManagement;
|
|
using Volo.Abp.TenantManagement;
|
|
|
|
namespace KonSoft.Admin;
|
|
|
|
[DependsOn(
|
|
typeof(AdminDomainSharedModule),
|
|
typeof(AbpAccountApplicationContractsModule),
|
|
typeof(AbpFeatureManagementApplicationContractsModule),
|
|
typeof(AbpIdentityApplicationContractsModule),
|
|
typeof(AbpPermissionManagementApplicationContractsModule),
|
|
typeof(AbpSettingManagementApplicationContractsModule),
|
|
typeof(AbpTenantManagementApplicationContractsModule),
|
|
typeof(AbpObjectExtendingModule)
|
|
)]
|
|
public class AdminApplicationContractsModule : AbpModule
|
|
{
|
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
AdminDtoExtensions.Configure();
|
|
}
|
|
} |