}                                    //Key

        public override int GetHashCode()
        {
            unchecked
            {
                int result = AccountNumber.GetHashCode();
                result = (result * 397) ^ MasterCode.GetHashCode();
                result = (result * 397) ^ Exchange.GetHashCode();
                return(result);
            }
        }