protected abstract AbstractAccountPostProcessor GetAccountPostProcessor(IAccountNumberChecker accountNumberChecker);
 public CheckNumberValidityAccountPostProcessor(IAccountNumberChecker accountNumberChecker)
 {
     this.accountNumberChecker = accountNumberChecker;
 }
Esempio n. 3
0
 protected override AbstractAccountPostProcessor GetAccountPostProcessor(IAccountNumberChecker accountNumberChecker)
 {
     return new CheckNumberValidityAccountPostProcessor(accountNumberChecker);
 }