sozsoft-platform/api/src/Sozsoft.Platform.Application.Contracts/PlatformApplicationContractsModule.cs

35 lines
1 KiB
C#
Raw Normal View History

2026-02-24 20:44:16 +00:00
using Sozsoft.Languages;
using Sozsoft.Notifications.Application;
using Sozsoft.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 Sozsoft.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();
}
}