Hospital_Management/aspnet-core/src/HospitalManagementSystem.Application/HospitalManagementSystemApplicationModule.cs
2025-01-07 12:02:47 +05:30

32 lines
1013 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 HospitalManagementSystem;
[DependsOn(
typeof(HospitalManagementSystemDomainModule),
typeof(AbpAccountApplicationModule),
typeof(HospitalManagementSystemApplicationContractsModule),
typeof(AbpIdentityApplicationModule),
typeof(AbpPermissionManagementApplicationModule),
typeof(AbpTenantManagementApplicationModule),
typeof(AbpFeatureManagementApplicationModule),
typeof(AbpSettingManagementApplicationModule)
)]
public class HospitalManagementSystemApplicationModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
Configure<AbpAutoMapperOptions>(options =>
{
options.AddMaps<HospitalManagementSystemApplicationModule>();
});
}
}