Created
May 7, 2011 02:42
-
-
Save brlinton/960147 to your computer and use it in GitHub Desktop.
Sample Controller Base
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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