コード例 #1
0
 protected abstract AbstractAccountPostProcessor GetAccountPostProcessor(IAccountNumberChecker accountNumberChecker);
コード例 #2
0
 public CheckNumberValidityAccountPostProcessor(IAccountNumberChecker accountNumberChecker)
 {
     this.accountNumberChecker = accountNumberChecker;
 }
コード例 #3
0
 protected override AbstractAccountPostProcessor GetAccountPostProcessor(IAccountNumberChecker accountNumberChecker)
 {
     return new CheckNumberValidityAccountPostProcessor(accountNumberChecker);
 }