コード例 #1
0
 public TransactionRelation(StatefulTransaction parent, StatefulTransaction child, int seqNo, String relationType)
 {
     this.parent       = parent;
     this.child        = child;
     this.relationType = relationType;
     this.seqNo        = seqNo;
 }
コード例 #2
0
 public virtual RuleResult Create(Context context, ParameterList parameters,
                                  out StatefulTransaction entity)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public TransactionRelation(StatefulTransaction child, String relationType)
 {
     this.parent       = null;
     this.child        = child;
     this.relationType = relationType;
 }