Files
KonSoft.Clean/modules/tenant-management/src/KonSoft.TenantManagement.Application/TenantManagementApplicationModule.cs
2025-09-08 14:15:45 +08:00

32 lines
981 B
C#

using Volo.Abp.Account;
using Volo.Abp.AutoMapper;
using Volo.Abp.FeatureManagement;
using Volo.Abp.Identity;
using Volo.Abp.Modularity;
using Volo.Abp.PermissionManagement;
using Volo.Abp.SettingManagement;
using Volo.Abp.TenantManagement;
namespace KonSoft.TenantManagement;
[DependsOn(
typeof(TenantManagementDomainModule),
typeof(AbpAccountApplicationModule),
typeof(TenantManagementApplicationContractsModule),
typeof(AbpIdentityApplicationModule),
typeof(AbpPermissionManagementApplicationModule),
typeof(AbpTenantManagementApplicationModule),
typeof(AbpFeatureManagementApplicationModule),
typeof(AbpSettingManagementApplicationModule)
)]
public class TenantManagementApplicationModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpAutoMapperOptions>(options =>
{
options.AddMaps<TenantManagementApplicationModule>();
});
}
}