Beispiel #1
0
        public KRASStandardResultSelectionCollection()
        {
            KRASStandardResultCollection krasStandardResultCollection = KRASStandardResultCollection.GetAll();

            foreach (KRASStandardResult result in krasStandardResultCollection)
            {
                if (this.Contains(result.Result) == false)
                {
                    this.Add(result.Result);
                }
            }
        }
        public KRASStandardMutationCollection()
        {
            KRASStandardResultCollection krasStandardResultCollection = KRASStandardResultCollection.GetAll();

            this.Add(string.Empty);
            foreach (KRASStandardResult result in krasStandardResultCollection)
            {
                if (string.IsNullOrEmpty(result.ResultDescription) == false)
                {
                    this.Add(result.ResultDescription);
                }
            }
        }