Exemplo n.º 1
0
 internal object GetInstance(Container container)
 {
     return((LifetimeManager != null)
         ? LifetimeManager.GetInstance(container, this)
         : CreateInstance(container));
 }
Exemplo n.º 2
0
 public object GetInstance()
 {
     return((LifetimeManager != null)
         ? LifetimeManager.GetInstance(this)
         : Factory(Container));
 }