public QuestionViewModel(Question q)
 {
     Question = q ?? new Question();
 }
 public QuestionViewModel()
 {
     Question = new Question();
 }