public QuestionResponseViewModel(ShortResponseQuestion SAQuestion, int questionNumber, int pollID, int numberOfQuestions, List<String> messages, String questionType)
 {
     this.SAQuestion = SAQuestion;
     this.questionNumber = questionNumber;
     this.numberOfQuestions = numberOfQuestions;
     this.pollID = pollID;
     this.questionType = "SAQ";
     this.messages = messages;
 }
 public SAResponseViewModel(ShortResponseQuestion question)
 {
     this.question = question;
 }