public string GetValue(ISymbolTable symbolTable, IQuestionNode question)
 {
     return(symbolTable
            .Lookup <decimal>(question.Id)
            .ToString(CultureInfo.InvariantCulture));
 }
Beispiel #2
0
 public string GetValue(ISymbolTable symbolTable, IQuestionNode question)
 {
     return(symbolTable.Lookup <bool>(question.Id).ToString());
 }
 public string GetValue(ISymbolTable symbolTable, IQuestionNode question)
 {
     return(symbolTable.Lookup <string>(question.Id) ?? "");
 }
Beispiel #4
0
 private string GetValue(IQuestionNode question)
 {
     return(question.QuestionType.GetValue(m_lookup, question));
 }