예제 #1
0
파일: Genome.cs 프로젝트: EladJy/BCare
 public Genome(BcareContext context)
 {
     this.context = context;
     if (listMed.Count == 0)
     {
         listMed = context.GetAllMed();
     }
     med = listMed[RandomMedication(listMed.Count)];
 }