internal DoWhileControlState(PromiseFactory factory, Func <IPromise <ControlValue <object> > > body) : base(factory) { _while = new DoWhileControlValue <object>(factory, body); }
internal DoWhileNullableResult(PromiseFactory factory, Func <IPromise <ControlValue <T> > > body) : base(factory) { _while = new DoWhileControlValue <T>(factory, body); }