/// <summary>
 /// Initializes a new instance of the <see cref="NationalAccountNumber"/> class.
 /// </summary>
 /// <param name="other">The other.</param>
 protected NationalAccountNumber(NationalAccountNumber other)
 {
     Country = other.Country;
     Parts   = other.Parts;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="NationalAccountNumber"/> class.
 /// </summary>
 /// <param name="other">The other.</param>
 /// <param name="newCountry">The new country.</param>
 protected NationalAccountNumber(NationalAccountNumber other, Country newCountry)
 {
     Country = newCountry;
     Parts   = other.Parts;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountAndBankCodeNumber"/> class.
 /// </summary>
 /// <param name="other">The other.</param>
 /// <param name="newCountry">The new country.</param>
 protected AccountAndBankCodeNumber(NationalAccountNumber other, Country newCountry)
     : base(other, newCountry)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountAndBankCodeNumber"/> class.
 /// </summary>
 /// <param name="other">The other.</param>
 protected AccountAndBankCodeNumber(NationalAccountNumber other)
     : base(other)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountAndBICNumber"/> class.
 /// </summary>
 /// <param name="other">The other.</param>
 protected AccountAndBICNumber(NationalAccountNumber other)
     : base(other)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountBICAndBranchNumber"/> class.
 /// </summary>
 /// <param name="other">The other.</param>
 /// <param name="newCountry">The new country.</param>
 protected AccountBICAndBranchNumber(NationalAccountNumber other, Country newCountry)
     : base(other, newCountry)
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="AccountBICAndBranchNumber"/> class.
 /// </summary>
 /// <param name="other">The other.</param>
 protected AccountBICAndBranchNumber(NationalAccountNumber other)
     : base(other)
 {
 }