public override bool Equals(object obj) { if (Object.ReferenceEquals(this, obj)) { return(true); } AttributeValueMvoStateEventIdDto other = obj as AttributeValueMvoStateEventIdDto; if (other == null) { return(false); } return(true && Object.Equals(this.AttributeValueId, other.AttributeValueId) && Object.Equals(this.AttributeVersion, other.AttributeVersion) ); }
public AttributeValueMvoStateEventIdFlattenedDto(AttributeValueMvoStateEventId val) { this._value = new AttributeValueMvoStateEventIdDtoWrapper(val); }
public AttributeValueMvoStateEventIdFlattenedDto(AttributeValueMvoStateEventIdDto val) { this._value = val; }
protected AttributeValueMvoStateEventDtoBase(AttributeValueMvoStateEventIdDto stateEventId) { this.StateEventId = stateEventId; }