Example #1
0
 public CashMachineService(
     IWithdrawNotesService withdrawNotesService,
     IAccountBalanceService accountBalance)
 {
     _withdrawNotesService = withdrawNotesService;
     _accountBalance       = accountBalance;
 }
 public void Initialize()
 {
     _repository = new MoqNotesRepository();
     _service    = new WithdrawNotesService(_repository);
 }