public WithdrawalRequestAppService(
     IAccountRepository accountRepository,
     IAccountWithdrawalManager accountWithdrawalManager,
     IWithdrawalRequestRepository repository) : base(repository)
 {
     _accountRepository        = accountRepository;
     _accountWithdrawalManager = accountWithdrawalManager;
     _repository = repository;
 }
 public ManualAccountWithdrawalProvider(
     IGuidGenerator guidGenerator,
     ICurrentTenant currentTenant,
     IWithdrawalRequestRepository withdrawalRequestRepository,
     IAccountWithdrawalManager accountWithdrawalManager) : base(accountWithdrawalManager)
 {
     _guidGenerator = guidGenerator;
     _currentTenant = currentTenant;
     _withdrawalRequestRepository = withdrawalRequestRepository;
 }
Пример #3
0
 public WithdrawalRequestRepositoryTests()
 {
     _withdrawalRequestRepository = GetRequiredService <IWithdrawalRequestRepository>();
 }