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

            InOutLineIdDto other = obj as InOutLineIdDto;

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

            return(true &&
                   Object.Equals(this.InOutDocumentNumber, other.InOutDocumentNumber) &&
                   Object.Equals(this.LineNumber, other.LineNumber)
                   );
        }
Ejemplo n.º 2
0
 public InOutLineIdFlattenedDto(InOutLineId val)
 {
     this._value = new InOutLineIdDtoWrapper(val);
 }
Ejemplo n.º 3
0
 public InOutLineIdFlattenedDto(InOutLineIdDto val)
 {
     this._value = val;
 }