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

            WarehouseStateEventIdDto other = obj as WarehouseStateEventIdDto;

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

            return(true &&
                   Object.Equals(this.WarehouseId, other.WarehouseId) &&
                   Object.Equals(this.Version, other.Version)
                   );
        }
Exemple #2
0
 public WarehouseStateEventIdFlattenedDto(WarehouseStateEventIdDto val)
 {
     this._value = val;
 }
Exemple #3
0
 public WarehouseStateEventIdFlattenedDto(WarehouseStateEventId val)
 {
     this._value = new WarehouseStateEventIdDtoWrapper(val);
 }
 protected WarehouseStateEventDtoBase(WarehouseStateEventIdDto stateEventId)
 {
     this.StateEventId = stateEventId;
 }