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

            DocumentAction other = obj as DocumentAction;

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

            return(true &&
                   Object.Equals(this.Name, other.Name)
                   );
        }
Exemplo n.º 2
0
 public DocumentActionDto(DocumentAction val)
 {
     this._value = val;
 }