public override bool Equals(object obj)
        {
            Corrientes o      = (Corrientes)obj;
            bool       result = false;

            if ((base.Equals(o)) &&
                (this.limitesCreditos == o.limitesCreditos) &&
                (this.tasaInteres == o.tasaInteres))
            {
                result = true;
            }

            return(result);
        }
        public override bool Equals(object obj)
        {
            Corrientes o      = (Corrientes)obj;
            bool       result = false;

            if (base.Equals(o) &&
                (this.limitecredito == o.limitecredito) &&
                (this.tiefectivo == o.tiefectivo) &&
                (this.tibalance == o.tibalance))
            {
                result = true;
            }

            return(result);
        }
        public override bool Equals(object obj)
        {
            Corrientes o      = (Corrientes)obj;
            bool       result = false;

            if (base.Equals(o) &&
                (this.retirarcc == o.retirarcc) &&
                (this.depositarcc == o.depositarcc))
            {
                ;
            }

            result = true;

            return(result);
        }
Exemple #4
0
        public override bool Equals(object obj)
        {
            Corrientes c      = (Corrientes)obj;
            bool       result = false;

            if (base.Equals(0) &&
                (this.credit_limit == c.credit_limit) &&
                (this.interest_rate == c.interest_rate) &&
                (this.interest_rate_E == c.interest_rate_E) &&
                (this.type_transaction == c.type_transaction))
            {
                result = true;
            }

            return(result);
        }