Askme.Domain.User.Equals C# (CSharp) Method

Equals() public method

public Equals ( User other ) : bool
other User
return bool
        public virtual bool Equals(User other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.username, username) && Equals(other.emailId, emailId) && Equals(other.password, password) && other.userId == userId;
        }

Same methods

User::Equals ( object obj ) : bool