first commit
This commit is contained in:
@ -0,0 +1,28 @@
|
||||
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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user