public virtual bool Compare(ClaimPropertyAssignment other) { if (other != null) { if (this.ClaimProperty.Compare(other.ClaimProperty)) { if (this.Expression.Compare(other.Expression)) { return(true); } else { return(false); } } else { return(false); } } else { return(false); } }
public virtual bool Compare(ClaimPropertyAssignment other) { if (other != null) { if (this.ClaimProperty.Compare(other.ClaimProperty)) { if (this.Expression.Compare(other.Expression)) { return true; } else { return false; } } else { return false; } } else { return false; } }