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.SettingManagement; using Volo.Abp.TenantManagement; using Win_in.Sfs.Print.Domain.Shared; namespace Win_in.Sfs.Print.Application.Contacts { [DependsOn( typeof(PrintDomainSharedModule), typeof(AbpAccountApplicationContractsModule), typeof(AbpFeatureManagementApplicationContractsModule), typeof(AbpIdentityApplicationContractsModule), typeof(AbpPermissionManagementApplicationContractsModule), typeof(AbpSettingManagementApplicationContractsModule), typeof(AbpTenantManagementApplicationContractsModule), typeof(AbpObjectExtendingModule) )] public class PrintApplicationContractsModule : AbpModule { public override void PreConfigureServices(ServiceConfigurationContext context) { PrintDtoExtensions.Configure(); } } }