You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.3 KiB
38 lines
1.3 KiB
using CompanyName.ProjectName.DataDictionaryManagement;
|
|
using CompanyName.ProjectName.QueryManagement;
|
|
using Volo.Abp.Account;
|
|
using Volo.Abp.AuditLogging;
|
|
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 CompanyName.ProjectName
|
|
{
|
|
[DependsOn(
|
|
typeof(ProjectNameDomainModule),
|
|
typeof(AbpAccountApplicationModule),
|
|
typeof(ProjectNameApplicationContractsModule),
|
|
typeof(AbpIdentityApplicationModule),
|
|
typeof(AbpPermissionManagementApplicationModule),
|
|
typeof(AbpTenantManagementApplicationModule),
|
|
typeof(AbpFeatureManagementApplicationModule),
|
|
typeof(AbpSettingManagementApplicationModule),
|
|
typeof(AbpAuditLoggingDomainModule),
|
|
typeof(QueryManagementDomainModule),
|
|
typeof(DataDictionaryManagementApplicationModule)
|
|
)]
|
|
public class ProjectNameApplicationModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
Configure<AbpAutoMapperOptions>(options =>
|
|
{
|
|
options.AddMaps<ProjectNameApplicationModule>();
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|