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

            OrganizationStructureStateEventIdDto other = obj as OrganizationStructureStateEventIdDto;

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

            return(_value.Equals(other._value));
        }
示例#2
0
 protected OrganizationStructureStateEventDtoBase(OrganizationStructureStateEventIdDto stateEventId)
 {
     this.StateEventId = stateEventId;
 }