private QuestionFormControl BuildUI(QuestionForm form)
 {
     try
     {
         var uiBuilder = new DefaultUIBuilder();
         return(uiBuilder.BuildUI(form, Output));
     }
     catch (Exception ex)
     {
         throw new ApplicationException("An unexpected error occured during creating of the user interface.", ex);
     }
 }
Exemplo n.º 2
0
 private QuestionFormControl BuildUI(QuestionForm form)
 {
     try
     {
         var uiBuilder = new DefaultUIBuilder();
         return uiBuilder.BuildUI(form, Output);
     }
     catch (Exception ex)
     {
         throw new ApplicationException("An unexpected error occured during creating of the user interface.", ex);
     }
 }