Beispiel #1
0
 public CUser(Int64 id)
 {
     Id                = id;
     CurrentState      = new CDefaultUserState(this);
     Symptoms          = Symptoms.None;
     Contraindications = Contraindications.None;
 }
Beispiel #2
0
 public void ResetState()
 {
     Contraindications = Contraindications.None;
     Symptoms          = Symptoms.None;
 }
Beispiel #3
0
 public Drug(String name, Contraindications contraindications)
 {
     Name = name;
     Contraindications = contraindications;
 }