public override bool Equals(object obj)
        {
            if (Object.ReferenceEquals(this, obj))
            {
                return(true);
            }

            OrganizationStateEventIdDto other = obj as OrganizationStateEventIdDto;

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

            return(_value.Equals(other._value));
        }
Beispiel #2
0
 protected OrganizationStateEventDtoBase(OrganizationStateEventIdDto stateEventId)
 {
     this.StateEventId = stateEventId;
 }