BExIS.IO.Transform.Input.DataReader.getDatastructureAsListOfVariableIdentifers C# (CSharp) Method

getDatastructureAsListOfVariableIdentifers() private method

Get List of VariableIdentifers converted from Datastructure Variable
private getDatastructureAsListOfVariableIdentifers ( ICollection Variables ) : List
Variables ICollection
return 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();
        }