Esempio n. 1
0
        public AddAnswerViewModel()
        {
            vml = new ViewModelLocator();
            qvm = vml.Questions;

            AddAnswerCommand = new RelayCommand(AddAnswer);
        }
 public AddQuestionViewModel()
 {
     vml = new ViewModelLocator();
     qvm = vml.Questions;
     AddQuestionCommand = new RelayCommand(AddQuestion);
 }