28 lines
		
	
	
		
			911 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			911 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 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;
 | |
| 
 | |
| namespace KonSoft.Payment;
 | |
| 
 | |
| [DependsOn(
 | |
|     typeof(PaymentDomainSharedModule),
 | |
|     typeof(AbpAccountApplicationContractsModule),
 | |
|     typeof(AbpFeatureManagementApplicationContractsModule),
 | |
|     typeof(AbpIdentityApplicationContractsModule),
 | |
|     typeof(AbpPermissionManagementApplicationContractsModule),
 | |
|     typeof(AbpSettingManagementApplicationContractsModule),
 | |
|     typeof(AbpTenantManagementApplicationContractsModule),
 | |
|     typeof(AbpObjectExtendingModule)
 | |
| )]
 | |
| public class PaymentApplicationContractsModule : AbpModule
 | |
| {
 | |
|     public override void PreConfigureServices(ServiceConfigurationContext context)
 | |
|     {
 | |
|         PaymentDtoExtensions.Configure();
 | |
|     }
 | |
| } |