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.
 
 
 
 
 
 

22 lines
490 B

using Volo.Abp.AutoMapper;
using Volo.Abp.Domain;
using Volo.Abp.Modularity;
using Win_in.Sfs.Wms.Job.Domain.Acl;
using Win_in.Sfs.Wms.Job.Domain.Shared;
namespace Win_in.Sfs.Wms.Job.Domain;
[DependsOn(
typeof(AbpDddDomainModule),
typeof(JobDomainSharedModule),
typeof(AbpAutoMapperModule)
)]
[DependsOn(
typeof(JobDomainAclModule)
)]
public class JobDomainModule : AbpModule
{
public override void ConfigureServices(ServiceConfigurationContext context)
{
}
}