public override bool Equals(object obj) { if (Object.ReferenceEquals(this, obj)) { return(true); } AttributeSetStateEventIdDto other = obj as AttributeSetStateEventIdDto; if (other == null) { return(false); } return(true && Object.Equals(this.AttributeSetId, other.AttributeSetId) && Object.Equals(this.Version, other.Version) ); }
protected AttributeSetStateEventDtoBase(AttributeSetStateEventIdDto stateEventId) { this.StateEventId = stateEventId; }
public AttributeSetStateEventIdFlattenedDto(AttributeSetStateEventId val) { this._value = new AttributeSetStateEventIdDtoWrapper(val); }
public AttributeSetStateEventIdFlattenedDto(AttributeSetStateEventIdDto val) { this._value = val; }