// 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)); }
public MainWindow() { InitializeComponent(); DataContext = new QuizListVM(); }