using Kurs.Languages; using Kurs.Notifications.Application; using Kurs.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 Kurs.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(); } }