public bool Equals(OrganisationNumberSe other)
        {
            if (other == null)
            {
                return(base.Equals(other));
            }

            return(TenDigitNormalForm.Equals(other.TenDigitNormalForm));
        }
 public override int GetHashCode()
 {
     return(TenDigitNormalForm.GetHashCode());
 }
 public int CompareTo(OrganisationNumberSe other)
 {
     return(TenDigitNormalForm.CompareTo(other.TenDigitNormalForm));
 }