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