Exemplo n.º 1
0
        // GET: Quiz
        public ActionResult Index(string username)
        {
            //maybe show list of quizes under a user
            QuizListVM quizListModel = new QuizListVM();

            //get list of quizes for current instructor
            return(View("Index", quizListModel));
        }
Exemplo n.º 2
0
 public MainWindow()
 {
     InitializeComponent();
     DataContext = new QuizListVM();
 }