Esempio n. 1
0
 public Repeat_BothEndCondition(Repeat_BothEndCondition ec)
 {
     rEnd = new Repeat_rEndCondition(ec.rEnd);
     tEnd = new Repeat_tEndCondition(ec.tEnd);
     tEnd.Type = TimeLimitType.TotalTime;
 }
Esempio n. 2
0
 public Repeat_tEndCondition(Repeat_tEndCondition ec)
 {
     this.TimeLimit = ec.TimeLimit;
     this.Type = ec.Type;
 }
Esempio n. 3
0
 public Repeat_BothEndCondition()
 {
     rEnd = new Repeat_rEndCondition();
     tEnd = new Repeat_tEndCondition();
     tEnd.Type = TimeLimitType.TotalTime;
 }