Exemplo n.º 1
0
        public override bool Equals(object obj)
        {
            if (Object.ReferenceEquals(this, obj))
            {
                return(true);
            }

            AttributeSetAttributeUseIdDto other = obj as AttributeSetAttributeUseIdDto;

            if (other == null)
            {
                return(false);
            }

            return(true &&
                   Object.Equals(this.AttributeSetId, other.AttributeSetId) &&
                   Object.Equals(this.AttributeId, other.AttributeId)
                   );
        }
Exemplo n.º 2
0
 public AttributeSetAttributeUseIdFlattenedDto(AttributeSetAttributeUseId val)
 {
     this._value = new AttributeSetAttributeUseIdDtoWrapper(val);
 }
Exemplo n.º 3
0
 public AttributeSetAttributeUseIdFlattenedDto(AttributeSetAttributeUseIdDto val)
 {
     this._value = val;
 }