Ejemplo n.º 1
0
 public UsesServiceLocaator(string test)
 {
     other = ServiceLocator.Container.Resolve <DependsOnStringTest2>(new Dictionary <string, string> {
         { "test2", "bla" }
     });
 }
Ejemplo n.º 2
0
			public UsesServiceLocaator(string test)
			{
				other = ServiceLocator.Container.Resolve<DependsOnStringTest2>(new Dictionary<string, string> { { "test2", "bla" } });
			}
Ejemplo n.º 3
0
 public UsesServiceLocator(string test)
 {
     other = ServiceLocator.Container.Resolve <DependsOnStringTest2>(new Arguments {
         { "test2", "bla" }
     });
 }