erp-platform/api/src/Erp.Platform.Application.Contracts/PlatformApplicationContractsModule.cs
2025-11-11 22:49:52 +03:00

34 lines
1 KiB
C#

using Erp.Languages;
using Erp.Notifications.Application;
using Erp.Settings;
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;
namespace Erp.Platform;
[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();
}
}