public void SecurityIdentificationTest()
        {
            SecuritiesIdentification target   = new SecuritiesIdentification(); // TODO: initialisez à une valeur appropriée
            ISINIdentifier           expected = null;                           // TODO: initialisez à une valeur appropriée
            ISINIdentifier           actual;

            target.SecurityIdentification = expected;
            actual = target.SecurityIdentification;
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Vérifiez l\'exactitude de cette méthode de test.");
        }
        internal PortfolioCodeAdaptee(string Value, string Label, string Custodian, string Indentification, string Type)
        {
            this.Label          = Label;
            this.Value          = Value;
            this.Custodian      = Custodian;
            this.Identification = new ISINIdentifier(Indentification);
            this.Type           = (PortfolioTypeCode)Type;

            Instances[Value] = this;
            Constants[Label] = this;
        }