Ejemplo n.º 1
0
        public override bool Equals(object obj)
        {
            if (Object.ReferenceEquals(this, obj))
            {
                return(true);
            }

            InOutLineMvoStateEventIdDto other = obj as InOutLineMvoStateEventIdDto;

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

            return(_value.Equals(other._value));
        }
Ejemplo n.º 2
0
 protected InOutLineMvoStateEventDtoBase(InOutLineMvoStateEventIdDto stateEventId)
 {
     this.StateEventId = stateEventId;
 }