Archives
-
Use Dependency Injection To Simplify Application Settings
We've all seen and written code that accesses data from our app.config or web.config file. We'll throw some simple settings in there:
-
CodeMash 2.0.1.0 REST Interfaces
This year's CodeMash website has two URI's that expose CodeMash Information:
-
Using Windsor to inject dependencies into ASP.NET MVC ActionFilters
I'm using Windsor as my IoC container for an ASP.NET MVC application. To get dependency injection in my controllers, I'm using a slightly modified WindsorControllerFactory from Andre Loker's post earlier this year. It works great and allows me to easily test my controllers.