Ejemplo n.º 1
0
 public ValidateAtmController(IUser userContext, IAccount accountContext, IAtm atm, IAccountGenerator generator,
                              IJwtSecurity jwtSecurity)
 {
     _userContext    = userContext;
     _accountContext = accountContext;
     _atm            = atm;
     _generator      = generator;
     _jwtSecurity    = jwtSecurity;
 }
Ejemplo n.º 2
0
 public BankingTransaction()
 {
     this.applicationService = new AtmService();
 }