diff options
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Controllers/HomeController.cs')
-rw-r--r-- | projecttemplates/MvcRelyingParty/Controllers/HomeController.cs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs b/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs index 415bfe1..261aa37 100644 --- a/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs +++ b/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs @@ -1,10 +1,10 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Web; -using System.Web.Mvc; +namespace MvcRelyingParty.Controllers { + using System; + using System.Collections.Generic; + using System.Linq; + using System.Web; + using System.Web.Mvc; -namespace MvcRelyingParty.Controllers { [HandleError] public class HomeController : Controller { public ActionResult Index() { |