/// <summary>
 /// Resets the cohort selectors for another prescription
 /// </summary>
 public static void ClearCohortSelectors()
 {
     if (CohortSelectors != null)
     {
         CohortSelectors.Clear();
     }
     if (AdditionalCohortSelectors != null)
     {
         AdditionalCohortSelectors.Clear();
     }
     if (treeremovals != null)
     {
         treeremovals.Clear();
     }
 }
Example #2
0
 /// <summary>
 /// Resets the cohort selectors for another prescription
 /// </summary>
 public static void ClearCohortSelectors()
 {
     if (CohortSelectors != null)
     {
         CohortSelectors.Clear();
     }
     if (AdditionalCohortSelectors != null)
     {
         AdditionalCohortSelectors.Clear();
     }
     if (percentages != null)
     {
         percentages.Clear();
     }
 }