Esempio n. 1
0
 public ObjectTagInfo(ObjectTagEntity Entity)
 {
     this.ID        = Entity.ID;
     this.ObjectKey = Entity.ObjectKey;
     this.ObjectID  = Entity.ObjectID;
     this.TagID     = Entity.TagID;
 }
Esempio n. 2
0
 public void SetEntity(ObjectTagEntity Entity)
 {
     if (!this.ObjectKey.Equals(Entity.ObjectKey))
     {
         this.ObjectKey = Entity.ObjectKey;
     }
     if (!this.ObjectID.Equals(Entity.ObjectID))
     {
         this.ObjectID = Entity.ObjectID;
     }
     if (!this.TagID.Equals(Entity.TagID))
     {
         this.TagID = Entity.TagID;
     }
 }