Пример #1
0
 public ReconciledItem(Transaction clientTrans, Transaction bankTrans, ReconciledMatchType matchedType)
 {
     _clientTransaction = clientTrans;
     _bankTransaction   = bankTrans;
     MatchType          = matchedType;
 }
Пример #2
0
 public RuleSetEvaluator(string ruleName, RuleSet ruleSet, ReconciledMatchType ruleType) : this(ruleSet)
 {
     this.RuleName = ruleName;
     this.RuleType = ruleType;
 }
Пример #3
0
 public ReconciledItem(TransactionSet transSet, ReconciledMatchType matchedType)
 {
     _resultSet = transSet;
     MatchType  = matchedType;
 }