11 lines
205 B
C#
11 lines
205 B
C#
using Volo.Abp.Modularity;
|
|
|
|
namespace KonSoft.Payment;
|
|
|
|
[DependsOn(
|
|
typeof(PaymentApplicationModule),
|
|
typeof(PaymentDomainTestModule)
|
|
)]
|
|
public class PaymentApplicationTestModule : AbpModule
|
|
{
|
|
} |