Skip to content

Instantly share code, notes, and snippets.

@dshookowsky
Created April 10, 2014 14:09
Show Gist options
  • Save dshookowsky/10386339 to your computer and use it in GitHub Desktop.
Save dshookowsky/10386339 to your computer and use it in GitHub Desktop.
Controllers/HomeController.cs
using System.Web.Mvc;
namespace Branding.Controllers
{
public class HomeController : Controller
{
//
// GET: /Home/
public ActionResult Index()
{
return View();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment