public override bool Equals(object obj) { if (Object.ReferenceEquals(this, obj)) { return(true); } WarehouseStateEventIdDto other = obj as WarehouseStateEventIdDto; if (other == null) { return(false); } return(_value.Equals(other._value)); }
protected WarehouseStateEventDtoBase(WarehouseStateEventIdDto stateEventId) { this.StateEventId = stateEventId; }