Example #1
0
 public RecosForm(List<string> prescription, String patient,IVidalHelper helper)
 {
     InitializeComponent();
     this.helper = helper;
     ServiceAnalysis.ArrayOfCodedReco recos  = helper.recos(prescription, patient);
     foreach (ServiceAnalysis.codedReco reco in recos)
     {
         if (reco != null && reco.recommendation != null)
         {
             recoslistBox.Items.Add(reco.recommendation);
         }
     }
 }