Example #1
0
 public bool Equals(TipoAccionPreventa other)
 {
     if (other == null)
     {
         return(false);
     }
     return(this.ta205_idtipoaccionpreventa.Equals(other.ta205_idtipoaccionpreventa));
 }
Example #2
0
        public override bool Equals(object obj)
        {
            if (obj == null)
            {
                return(false);
            }
            TipoAccionPreventa objAsTAP = obj as TipoAccionPreventa;

            if (objAsTAP == null)
            {
                return(false);
            }
            else
            {
                return(Equals(objAsTAP));
            }
        }