Esempio n. 1
0
 public void TreatSymptom(SymptomType _symptomType)
 {
     GetSymptomByType(_symptomType).Cure();
 }
Esempio n. 2
0
 public Symptom GetSymptomByType(SymptomType _symptomType)
 {
     return(symptoms.Find(x => x.symptomType == _symptomType));
 }