Beispiel #1
0
 public ObjectDefinitionBuilder(string objectId)
 {
     _ref = new ObjectRef <TObject>(objectId);
     SetObjectType();
 }
Beispiel #2
0
 private bool Equals(ObjectRef <T> other)
 {
     return(string.Equals(Id, other.Id));
 }
Beispiel #3
0
 public ProxyFactoryDefinitionBuilder(string id)
 {
     _builder = new ObjectDefinitionBuilder <ProxyFactoryObject>(id);
     _ref     = new ObjectRef <TObject>(id);
     SetTargetInterfaces();
 }