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

            OrganizationStructureTypeStateEventIdDto other = obj as OrganizationStructureTypeStateEventIdDto;

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

            return(true &&
                   Object.Equals(this.Id, other.Id) &&
                   Object.Equals(this.Version, other.Version)
                   );
        }
Beispiel #2
0
 public OrganizationStructureTypeStateEventIdFlattenedDto(OrganizationStructureTypeStateEventId val)
 {
     this._value = new OrganizationStructureTypeStateEventIdDtoWrapper(val);
 }
Beispiel #3
0
 public OrganizationStructureTypeStateEventIdFlattenedDto(OrganizationStructureTypeStateEventIdDto val)
 {
     this._value = val;
 }
 protected OrganizationStructureTypeStateEventDtoBase(OrganizationStructureTypeStateEventIdDto stateEventId)
 {
     this.StateEventId = stateEventId;
 }