Rhetos.Dsl.DefaultConcepts.AutoCodePropertyInfo.CreateNewConcepts C# (CSharp) Méthode

CreateNewConcepts() public méthode

public CreateNewConcepts ( IEnumerable existingConcepts ) : IEnumerable
existingConcepts IEnumerable
Résultat IEnumerable
        public IEnumerable<IConceptInfo> CreateNewConcepts(IEnumerable<IConceptInfo> existingConcepts)
        {
            var newConcets = new List<IConceptInfo>();

            newConcets.Add(new SystemRequiredInfo { Property = Property });
            newConcets.Add(CreateUniqueConstraint());

            return newConcets;
        }