Esempio n. 1
0
 //	CONSTRUCTOR
 public InjectionBinding(Type targetType, IInstanceProviderList instanceProviderList)
 {
     BindingType           = targetType;
     _InstanceProviderList = instanceProviderList;
 }
Esempio n. 2
0
 //	CONSTRUCTOR
 public InjectionBinding(IInstanceProviderList instanceProviderList)
 {
     BindingType           = typeof(TBinding);
     _instanceProviderList = instanceProviderList;
     RestrictionList       = new List <IInjectionRestriction>();
 }