Exemplo n.º 1
0
        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));
        }
Exemplo n.º 2
0
 protected WarehouseStateEventDtoBase(WarehouseStateEventIdDto stateEventId)
 {
     this.StateEventId = stateEventId;
 }