BExIS.IO.Transform.Input.DataReader.getDatastructureAsListOfVariableIdentifers C# (CSharp) Метод

getDatastructureAsListOfVariableIdentifers() приватный Метод

Get List of VariableIdentifers converted from Datastructure Variable
private getDatastructureAsListOfVariableIdentifers ( ICollection Variables ) : List
Variables ICollection
Результат List
        private List<VariableIdentifier> getDatastructureAsListOfVariableIdentifers(ICollection<Variable> Variables)
        {
            var tempList = from v in Variables
                           select new VariableIdentifier
                           {
                               name = v.Label,
                               id = v.Id,
                               systemType = v.DataAttribute.DataType.SystemType
                           };

            return tempList.ToList();
        }