Ejemplo n.º 1
0
 public ListBaseSurrogate(Type listType, ICollection collection, IPropertyValueManager propertyValueManager)
 {
     ListType             = listType;
     Collection           = collection;
     PropertyValueManager = propertyValueManager;
 }
Ejemplo n.º 2
0
 public ListBaseServices(IPropertyValueManager <T> registeredPropertyDataManager, IReceivePortalChild <I> receivePortal)
 {
     PropertyValueManager = registeredPropertyDataManager;
     ReceivePortal        = receivePortal;
 }
Ejemplo n.º 3
0
 public BaseServices(IPropertyValueManager <T> registeredPropertyDataManager, IRegisteredPropertyManager <T> registeredPropertyManager)
 {
     PropertyValueManager      = registeredPropertyDataManager;
     RegisteredPropertyManager = registeredPropertyManager;
 }
Ejemplo n.º 4
0
 public Base(IBaseServices <T> services)
 {
     PropertyValueManager = services.PropertyValueManager;
     ((ISetTarget)PropertyValueManager).SetTarget(this);
 }