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