25 lines
653 B
C#
25 lines
653 B
C#
using Syc.Abp.Application.Contracts.Options;
|
|
using Volo.Abp.FeatureManagement;
|
|
using Volo.Abp.Modularity;
|
|
using Volo.Abp.ObjectExtending;
|
|
|
|
namespace Syc.Basic.Web.WMS;
|
|
|
|
[DependsOn(
|
|
typeof(WMSDomainSharedModule),
|
|
typeof(AbpFeatureManagementApplicationContractsModule),
|
|
typeof(AbpObjectExtendingModule)
|
|
)]
|
|
public class WMSApplicationContractsModule : AbpModule
|
|
{
|
|
public override void PreConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
WMSDtoExtensions.Configure();
|
|
}
|
|
|
|
public override void PostConfigureServices(ServiceConfigurationContext context)
|
|
{
|
|
base.PostConfigureServices(context);
|
|
}
|
|
}
|