Наследование: System.IComparable, System.ICloneable, INotifyPropertyChanged
 ///<summary>
 /// Returns a value indicating whether this instance is equal to a specified object.
 ///</summary>
 ///<param name="toObject">An object to compare to this instance.</param>
 ///<returns>true if toObject is a <see cref="VStateProvinceCountryRegionBase"/> and has the same value as this instance; otherwise, false.</returns>
 public virtual bool Equals(VStateProvinceCountryRegionBase toObject)
 {
     if (toObject == null)
     {
         return(false);
     }
     return(Equals(this, toObject));
 }
        ///<summary>
        /// Determines whether the specified <see cref="VStateProvinceCountryRegionBase"/> instances are considered equal.
        ///</summary>
        ///<param name="Object1">The first <see cref="VStateProvinceCountryRegionBase"/> to compare.</param>
        ///<param name="Object2">The second <see cref="VStateProvinceCountryRegionBase"/> to compare. </param>
        ///<returns>true if Object1 is the same instance as Object2 or if both are null references or if objA.Equals(objB) returns true; otherwise, false.</returns>
        public static bool Equals(VStateProvinceCountryRegionBase Object1, VStateProvinceCountryRegionBase Object2)
        {
            // both are null
            if (Object1 == null && Object2 == null)
            {
                return(true);
            }

            // one or the other is null, but not both
            if (Object1 == null ^ Object2 == null)
            {
                return(false);
            }

            bool equal = true;

            if (Object1.StateProvinceId != Object2.StateProvinceId)
            {
                equal = false;
            }
            if (Object1.StateProvinceCode != Object2.StateProvinceCode)
            {
                equal = false;
            }
            if (Object1.IsOnlyStateProvinceFlag != Object2.IsOnlyStateProvinceFlag)
            {
                equal = false;
            }
            if (Object1.StateProvinceName != Object2.StateProvinceName)
            {
                equal = false;
            }
            if (Object1.TerritoryId != Object2.TerritoryId)
            {
                equal = false;
            }
            if (Object1.CountryRegionCode != Object2.CountryRegionCode)
            {
                equal = false;
            }
            if (Object1.CountryRegionName != Object2.CountryRegionName)
            {
                equal = false;
            }
            return(equal);
        }
		///<summary>
		/// Determines whether the specified <see cref="VStateProvinceCountryRegionBase"/> instances are considered equal.
		///</summary>
		///<param name="Object1">The first <see cref="VStateProvinceCountryRegionBase"/> to compare.</param>
		///<param name="Object2">The second <see cref="VStateProvinceCountryRegionBase"/> to compare. </param>
		///<returns>true if Object1 is the same instance as Object2 or if both are null references or if objA.Equals(objB) returns true; otherwise, false.</returns>
		public static bool Equals(VStateProvinceCountryRegionBase Object1, VStateProvinceCountryRegionBase Object2)
		{
			// both are null
			if (Object1 == null && Object2 == null)
				return true;

			// one or the other is null, but not both
			if (Object1 == null ^ Object2 == null)
				return false;

			bool equal = true;
			if (Object1.StateProvinceId != Object2.StateProvinceId)
				equal = false;
			if (Object1.StateProvinceCode != Object2.StateProvinceCode)
				equal = false;
			if (Object1.IsOnlyStateProvinceFlag != Object2.IsOnlyStateProvinceFlag)
				equal = false;
			if (Object1.StateProvinceName != Object2.StateProvinceName)
				equal = false;
			if (Object1.TerritoryId != Object2.TerritoryId)
				equal = false;
			if (Object1.CountryRegionCode != Object2.CountryRegionCode)
				equal = false;
			if (Object1.CountryRegionName != Object2.CountryRegionName)
				equal = false;
			return equal;
		}
		///<summary>
		/// Returns a value indicating whether this instance is equal to a specified object.
		///</summary>
		///<param name="toObject">An object to compare to this instance.</param>
		///<returns>true if toObject is a <see cref="VStateProvinceCountryRegionBase"/> and has the same value as this instance; otherwise, false.</returns>
		public virtual bool Equals(VStateProvinceCountryRegionBase toObject)
		{
			if (toObject == null)
				return false;
			return Equals(this, toObject);
		}