Пример #1
0
 public WalletActionManager(
     IWalletActionRepository repository,
     IRechargeProductRepository productRepository,
     IWalletRepository walletRepository,
     IWalletLogRepository walletLogRepository
     )
 {
     _repository          = repository;
     _productRepository   = productRepository;
     _walletRepository    = walletRepository;
     _walletLogRepository = walletLogRepository;
 }
Пример #2
0
 public RechargeProductAppService(IRechargeProductRepository repository)
 {
     _repository = repository;
 }