예제 #1
0
 public YesNoQuestion OnYes(NextQuestion onYes)
 {
     _onYes = onYes;
     return this;
 }
예제 #2
0
 public YesNoQuestion OnNo(NextQuestion onNo)
 {
     _onNo = onNo;
     return this;
 }
예제 #3
0
 public DateTimeQuestion OnNext(NextQuestion onNext)
 {
     _onNext = onNext;
     return this;
 }
예제 #4
0
 public YesNoQuestion()
 {
     _onNo = Done;
     _onYes = Done;
 }
예제 #5
0
 public DateTimeQuestion()
 {
     _onNext = Done;
 }