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

            OrganizationStructureStateEventIdDto other = obj as OrganizationStructureStateEventIdDto;

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

            return(true &&
                   Object.Equals(this.Id, other.Id) &&
                   Object.Equals(this.Version, other.Version)
                   );
        }
예제 #2
0
 public OrganizationStructureStateEventIdFlattenedDto(OrganizationStructureStateEventId val)
 {
     this._value = new OrganizationStructureStateEventIdDtoWrapper(val);
 }
예제 #3
0
 public OrganizationStructureStateEventIdFlattenedDto(OrganizationStructureStateEventIdDto val)
 {
     this._value = val;
 }
 protected OrganizationStructureStateEventDtoBase(OrganizationStructureStateEventIdDto stateEventId)
 {
     this.StateEventId = stateEventId;
 }