Domain.Client.ValueObjects.AccountStatus.Equals C# (CSharp) Method

Equals() public method

public Equals ( AccountStatus other ) : bool
other AccountStatus
return bool
        public virtual bool Equals(AccountStatus other)
        {
            if (null != other && other.GetType() == GetType())
            {
                return other.Status == Status;
            }

            return false;
        }

Same methods

AccountStatus::Equals ( object obj ) : bool