Exemplo n.º 1
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            IMPropertyEN t = obj as IMPropertyEN;

            if (t == null)
            {
                return(false);
            }
            if (Id.Equals(t.Id))
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Exemplo n.º 2
0
 public IMPropertyEN(IMPropertyEN iMProperty)
 {
     this.init(Id, iMProperty.Property, iMProperty.Name, iMProperty.Type, iMProperty.IsOID, iMProperty.TargetAssociation, iMProperty.OriginAsociation, iMProperty.AssociationType, iMProperty.IsWritable, iMProperty.Description, iMProperty.Entity, iMProperty.Trigger, iMProperty.Register, iMProperty.Value);
 }