Example #1
0
        public List <Analysis.LogAssociation> GetAssociationsWithParameterValues(List <string> ParameterValues)
        {
            List <Analysis.LogAssociation> Results = new List <LogAssociation>();

            foreach (int i in this.LogIds)
            {
                Analysis.LogAssociation Asso = this.GetAssociation(i);
                if (Asso.DoesHaveParameterValues(ParameterValues))
                {
                    Results.Add(Asso);
                }
            }
            return(Results);
        }