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.
27 lines
871 B
27 lines
871 B
using Volo.Abp.Account;
|
|
using Volo.Abp.FeatureManagement;
|
|
using Volo.Abp.FluentValidation;
|
|
using Volo.Abp.Identity;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.ObjectExtending;
|
|
using Volo.Abp.PermissionManagement;
|
|
using Volo.Abp.SettingManagement;
|
|
using Volo.Abp.TenantManagement;
|
|
|
|
namespace Win_in.Sfs.Wms.DataExchange;
|
|
|
|
[DependsOn(
|
|
typeof(DataExchangeDomainSharedModule),
|
|
typeof(AbpAccountApplicationContractsModule),
|
|
typeof(AbpFeatureManagementApplicationContractsModule),
|
|
typeof(AbpIdentityApplicationContractsModule),
|
|
typeof(AbpPermissionManagementApplicationContractsModule),
|
|
typeof(AbpSettingManagementApplicationContractsModule),
|
|
typeof(AbpTenantManagementApplicationContractsModule),
|
|
typeof(AbpObjectExtendingModule),
|
|
typeof(AbpFluentValidationModule)
|
|
)]
|
|
public class DataExchangeApplicationContractsModule : AbpModule
|
|
{
|
|
|
|
}
|
|
|