public override bool Equals(object obj) { if (Object.ReferenceEquals(this, obj)) { return(true); } AttributeStateEventIdDto other = obj as AttributeStateEventIdDto; if (other == null) { return(false); } return(true && Object.Equals(this.AttributeId, other.AttributeId) && Object.Equals(this.Version, other.Version) ); }
protected AttributeStateEventDtoBase(AttributeStateEventIdDto stateEventId) { this.StateEventId = stateEventId; }
public AttributeStateEventIdFlattenedDto(AttributeStateEventId val) { this._value = new AttributeStateEventIdDtoWrapper(val); }
public AttributeStateEventIdFlattenedDto(AttributeStateEventIdDto val) { this._value = val; }