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) ); }
public AttributeSetAttributeUseIdFlattenedDto(AttributeSetAttributeUseId val) { this._value = new AttributeSetAttributeUseIdDtoWrapper(val); }
public AttributeSetAttributeUseIdFlattenedDto(AttributeSetAttributeUseIdDto val) { this._value = val; }