From 9e59aefacd0cd8e927accf020e37551c51c994bf Mon Sep 17 00:00:00 2001 From: Gmaniacuk1 Date: Wed, 2 Mar 2016 17:12:03 +0000 Subject: [PATCH] Update README.md Within the instructions for students, instruct the student to add an additional three 'using' directives to the TriviaController class --- HOL/AspNetApiSpa/README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/HOL/AspNetApiSpa/README.md b/HOL/AspNetApiSpa/README.md index f581454..6733212 100644 --- a/HOL/AspNetApiSpa/README.md +++ b/HOL/AspNetApiSpa/README.md @@ -280,6 +280,9 @@ You will use the ASP.NET Scaffolding tools provided by Visual Studio to create t using GeekQuiz.Models; using Microsoft.AspNet.Authorization; using Microsoft.Data.Entity; + using Microsoft.AspNet.Mvc; + using System.Linq; + using System.Threading.Tasks; ```` 1. Add the following code at the beginning of the **TriviaController** class to define, initialize and dispose the **TriviaContext** instance in the controller.