예제 #1
0
 public WalletActionManager(
     IWalletActionRepository repository,
     IRechargeProductRepository productRepository,
     IWalletRepository walletRepository,
     IWalletLogRepository walletLogRepository
     )
 {
     _repository          = repository;
     _productRepository   = productRepository;
     _walletRepository    = walletRepository;
     _walletLogRepository = walletLogRepository;
 }
예제 #2
0
 public WalletLogAppService(IWalletLogRepository repository)
 {
     _repository = repository;
 }