|
|
|
@ -1,17 +1,15 @@ |
|
|
|
using Microsoft.Extensions.DependencyInjection; |
|
|
|
using Volo.Abp.Auditing; |
|
|
|
using Volo.Abp.Caching; |
|
|
|
using Volo.Abp.Data; |
|
|
|
using Volo.Abp.Domain.Repositories; |
|
|
|
using Volo.Abp.EventBus; |
|
|
|
using Volo.Abp.ExceptionHandling; |
|
|
|
using Volo.Abp.Guids; |
|
|
|
using Volo.Abp.Modularity; |
|
|
|
using Volo.Abp.MultiTenancy; |
|
|
|
using Volo.Abp.ObjectMapping; |
|
|
|
using Volo.Abp.Specifications; |
|
|
|
using Volo.Abp.Threading; |
|
|
|
using Volo.Abp.Timing; |
|
|
|
using Volo.Abp.Uow; |
|
|
|
|
|
|
|
namespace Volo.Abp.Domain; |
|
|
|
|
|
|
|
@ -20,13 +18,11 @@ namespace Volo.Abp.Domain; |
|
|
|
typeof(AbpDataModule), |
|
|
|
typeof(AbpEventBusModule), |
|
|
|
typeof(AbpGuidsModule), |
|
|
|
typeof(AbpMultiTenancyModule), |
|
|
|
typeof(AbpThreadingModule), |
|
|
|
typeof(AbpTimingModule), |
|
|
|
typeof(AbpUnitOfWorkModule), |
|
|
|
typeof(AbpObjectMappingModule), |
|
|
|
typeof(AbpExceptionHandlingModule), |
|
|
|
typeof(AbpSpecificationsModule) |
|
|
|
typeof(AbpSpecificationsModule), |
|
|
|
typeof(AbpCachingModule) |
|
|
|
)] |
|
|
|
public class AbpDddDomainModule : AbpModule |
|
|
|
{ |
|
|
|
|