Skip to content

Instantly share code, notes, and snippets.

@brlinton
Created May 7, 2011 02:42
Show Gist options
  • Save brlinton/960147 to your computer and use it in GitHub Desktop.
Save brlinton/960147 to your computer and use it in GitHub Desktop.
Sample Controller Base
using System.Web.Mvc;
using Microsoft.Practices.Unity;
namespace MyNamespace.Application
{
public class ApplicationController : Controller
{
[Dependency]
public ILogger Logger { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment