public TransactionRelation(StatefulTransaction parent, StatefulTransaction child, int seqNo, String relationType) { this.parent = parent; this.child = child; this.relationType = relationType; this.seqNo = seqNo; }
public virtual RuleResult Create(Context context, ParameterList parameters, out StatefulTransaction entity) { throw new NotImplementedException(); }
public TransactionRelation(StatefulTransaction child, String relationType) { this.parent = null; this.child = child; this.relationType = relationType; }