Created
May 31, 2012 16:50
-
-
Save glikoz/2844693 to your computer and use it in GitHub Desktop.
Usage of Container out of Controller
This file contains 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
public class MyProvider | |
{ | |
public IRepository MyRepository {get;set;} | |
public MyProvider() | |
{ | |
// Registration made in AppHost as container.Register<IRepository>(c => new MyRepository ()); | |
MyRepository= new Container().Resolve(IRepository); // a)Concrete Service Locator | |
MyRepository= Funq.Container.Resolve(IRepository); // b)Service Locator check this http://blog.ploeh.dk/2010/02/03/ServiceLocatorIsAnAntiPattern.aspx | |
// c) Another way | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment