public Condition2(ConditionHandler ch, GetValue1Handler gvh1, GetValue2Handler gvh2)
     : this(ch)
 {
     this.gvh1 = gvh1;
     this.gvh2 = gvh2;
 }
Beispiel #2
0
 public Operation2(OperationHandler ch, GetValue1Handler gvh1, GetValue2Handler gvh2)
     : this(ch)
 {
     this.gvh1 = gvh1;
     this.gvh2 = gvh2;
 }
 public Condition2(ConditionHandler ch, GetValue1Handler gvh1, T2 value2)
     : this(ch)
 {
     this.gvh1   = gvh1;
     this.value2 = value2;
 }
Beispiel #4
0
 public Operation2(OperationHandler ch, GetValue1Handler gvh1, T2 value2)
     : this(ch)
 {
     this.gvh1   = gvh1;
     this.value2 = value2;
 }