erp-platform/api/src/Erp.Platform.Application.Contracts/PlatformApplicationContractsModule.cs

35 lines
1 KiB
C#
Raw Normal View History

2025-11-11 19:49:52 +00:00
using Erp.Languages;
using Erp.Notifications.Application;
using Erp.Settings;
2025-05-06 06:45:49 +00:00
using Volo.Abp.Account;
using Volo.Abp.FeatureManagement;
using Volo.Abp.Identity;
using Volo.Abp.Modularity;
using Volo.Abp.ObjectExtending;
using Volo.Abp.PermissionManagement;
using Volo.Abp.TenantManagement;
2025-11-11 19:49:52 +00:00
namespace Erp.Platform;
2025-05-06 06:45:49 +00:00
[DependsOn(
typeof(PlatformDomainSharedModule),
typeof(AbpAccountApplicationContractsModule),
typeof(AbpFeatureManagementApplicationContractsModule),
typeof(AbpIdentityApplicationContractsModule),
typeof(AbpPermissionManagementApplicationContractsModule),
typeof(AbpTenantManagementApplicationContractsModule),
typeof(AbpObjectExtendingModule),
typeof(LanguagesApplicationContractsModule),
typeof(SettingsApplicationContractsModule),
typeof(NotificationApplicationContractsModule)
)]
public class PlatformApplicationContractsModule : AbpModule
{
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PlatformDtoExtensions.Configure();
}
}
2025-11-11 19:49:52 +00:00