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.
21 lines
666 B
21 lines
666 B
using Lion.AbpPro.FileManagement;
|
|
|
|
namespace Lion.AbpPro
|
|
{
|
|
[DependsOn(
|
|
typeof(AbpProDomainSharedModule),
|
|
typeof(AbpEmailingModule),
|
|
typeof(BasicManagementDomainModule),
|
|
typeof(DataDictionaryManagementDomainModule),
|
|
typeof(NotificationManagementDomainModule),
|
|
typeof(LanguageManagementDomainModule),
|
|
typeof(FileManagementDomainModule)
|
|
)]
|
|
public class AbpProDomainModule : AbpModule
|
|
{
|
|
public override void ConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
Configure<AbpAutoMapperOptions>(options => { options.AddMaps<AbpProDomainModule>(); });
|
|
}
|
|
}
|
|
}
|